Server Error Ubuntu 10.04

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
Evas
Posts: 4
Joined: Tue Sep 21, 2010 8:16 am

Server Error Ubuntu 10.04

Post by Evas »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:4410
L2JDP Revision Number:7663
Hi All! I can not understand in what problem. I put Server T2.4 on Ubuntu 10.04.
Has installed java version "1.6.0_21".
At start startLoginServer.sh in stdout.log writes:

Exception in thread "main" java.lang.NoClassDefFoundError: org/mmocore/network/IAcceptFilter
Caused by: java.lang.ClassNotFoundException: org.mmocore.network.IAcceptFilter
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: com.l2jserver.loginserver.L2LoginServer. Program will exit.

:(
_DS_
L2j Veteran
L2j Veteran
Posts: 3437
Joined: Wed Apr 30, 2008 8:53 am
Location: Russia

Re: Server Error Ubuntu 10.04

Post by _DS_ »

lib folder absent, or not in the class path.
l2jlogin.jar absent.
Commiter of the shit
public static final int PI = 3.1415926535897932384626433832795;
Evas
Posts: 4
Joined: Tue Sep 21, 2010 8:16 am

Re: Server Error Ubuntu 10.04

Post by Evas »

And how it to correct? More in detail :?
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Server Error Ubuntu 10.04

Post by jurchiks »

it means you have incomplete files...
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
Evas
Posts: 4
Joined: Tue Sep 21, 2010 8:16 am

Re: Server Error Ubuntu 10.04

Post by Evas »

Why it not the full? On Windows server 2003 it is the assembly it is normal it is launched and on ubuntu here such problem.
User avatar
MELERIX
L2j Veteran
L2j Veteran
Posts: 6667
Joined: Sat Sep 23, 2006 11:31 pm
Location: Chile
Contact:

Re: Server Error Ubuntu 10.04

Post by MELERIX »

if linux... probably permission issues.
Evas
Posts: 4
Joined: Tue Sep 21, 2010 8:16 am

Re: Server Error Ubuntu 10.04

Post by Evas »

For this purpose it is necessary to edit LoginServer_loop.sh? At me there I can't understand it what there to write...

Code: Select all

#!/bin/bash err=1until [ $err == 0 ]; do    [ -f log/java0.log.0 ] && mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"    [ -f log/stdout.log ] && mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"    nice -n -2 java -Xms128m -Xmx128m -cp ./../libs/*:l2jlogin.jar com.l2jserver.loginserver.L2LoginServer > log/stdout.log 2>&1    err=$?#    /etc/init.d/mysql restart    sleep 10;done 
Post Reply