I guess plenty of you guys still don't get it, it's not a windows and a linux version which you can simply choose from and run the server from that.
You gotta run both to have it actually working, each of those have different sub-servers that work together.
@ZorroXXX:
That is fine, it's just pointing out in which directory the script is running from.
@bluedev:
To point the client to the server just edit BOI Folder/Bin/ServerList.ini with something like:
Code:
node server normal WhateverNameYouWant 127.0.0.1 30002 1
No idea how to create the account correctly yet, you create it on PassportBOI..account, but I still couldn't get the password to work.
Btw, for those who don't frequent rz:
Quote:
|
Originally Posted by BloodyShade
Btw, I changed the scripts around a bit to make them actually accurate:
start.sh:
Code:
#!/bin/bash
cd /home/BOI/DBServer/bin
./dbserver&
sleep 2
cd /home/BOI/CardServer/bin
./cardsvrd&
sleep 2
cd /home/BOI/NameServer/bin
./namesvrd&
sleep 2
cd /home/BOI/gacd
./gacd io.conf&
sleep 2
cd /home/BOI/LogServer/bin
./logsrv&
sleep 2
cd /home/BOI/authd/build
./authd&
stop.sh:
Code:
#!/bin/bash
pkill -9 dbserver
pkill -9 cardsvrd
pkill -9 namesvrd
pkill -9 gacd
pkill -9 logsrv
pkill -9 java
Also remember to change /home/BOI/authd/build/authd:
Otherwise it will keep looping forever, and since it seems the java app doesn't close on failure (it will fail when relaunching because the port will already be in use from the first start), it will start eating memory until it makes the server unusable and will probably cause it to reboot due to a lack of memory (and eventually swap).
Code:
#!/bin/sh
java -cp ../lib/jio.jar:../lib/cache.jar:../lib/wanmeiaudb.jar:../lib/log4j-1.2.9.jar:../lib/jconn3.jar:../msSQLjdbc/lib/msbase.jar:../msSQLjdbc/lib/mssqlserver.jar:../msSQLjdbc/lib/msutil.jar:. authd /etc/table.xml &> authd.out
Hope that helps a bit, just need to figure out now how to insert the password correctly on PassportBOI..account 
|