Mine
and maybe this:
Originally Posted by chavman69
and maybe this:
Originally Posted by chavman69
Quote:
brunno run a startup script in terminal and see were the error lies sounds to me like an auth error if u get /libjvm.so'.sr/java/jdk1.6.0_12/jre/lib/i386/server under auth open the auth file and paste this in if u look closer u can see that there is a letter missing ther is a . and not a u so i fixed by adding another u next to the first one u can find start.sh around the fourms i was running it on an intel based chip if that makes any sense
#!/bin/sh
cd /root/pwserver/my_authd/build
export HOME=/uusr/java/jdk1.6.0_12/
export PATH=$HOME/bin:$PATH
#export PATH=$PATH:$HOME/bin:/usr/java/jdk1.6.0_12/bin
export CLASSPATH=.:/usr/java/jdk1.6.0_12/lib/dt.jar:/usr/java/jdk1.6.0_12/lib/tools.jar:/usr/java/jdk1.6.0_12/lib/mysql-connector-java-5.0.8-bin.jar
export JAVA_HOME=/usr/java/jdk1.6.0_12/
while true; do
java -cp ../lib/jio.jar:../lib/application.jar:../lib/commons-collections-3.1.jar:../lib/commons-dbcp-1.2.1.jar:../lib/commons-pool-1.2.jar:../lib/commons-logging-1.0.4.jar:../lib/log4j-1.2.9.jar:.:$CLASSPATH authd table.xml
sleep 2
done