EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::Linux Servers (https://www.eqemulator.org/forums/forumdisplay.php?f=588)
-   -   Trying to set up server (https://www.eqemulator.org/forums/showthread.php?t=31368)

Jster22 05-23-2010 06:06 PM

Trying to set up server
 
Hello,
I am trying to set up a server. I have been following the guide Installing EQEmu on Debian Linux but it is very out of date. I followed the guide up until the section "Extract Source" where is instructs me to execute "tar xzf EQEmu-0.7.0-1043-source.tgz".

I have created the user eqemu, added directories home/source and home/server. I have got the files from the svn repository. I'm not sure how to compile to code now? My source directory contains the folders eqemumaps-ready-only, projecteqemu-read-only, projecteqdb-current-only, projecteqqests-read-only.

What do I do next? Is there an updated guide somewhere?
Thank you for your help!

trevius 05-23-2010 07:27 PM

Well, for one thing, you are going to have to move the maps and quests folders into your server directory and rename them to "maps" and "quests" respectively. Make sure that the maps are directly inside that maps folder and not inside another folder within it. Also, quests should be in folders named after the shortname of each zone directly inside the quests folder.

You will also need to move your quests/plugins folder to your server folder.

Really, most of the debian install guide should still be useful information for getting setup. I think the only thing that has really changed is how you get the source code and database, as they both come from google svn now. Unfortunately, I don't have instructions on how to do that on Linux yet, but there may be some directions around the forums/wiki somewhere for it.

Once you get the EQEmuServer source code downloaded, you can just go into that folder and type "make" and if you have followed all of the other steps, it should compile properly.

Mirakus 05-27-2010 12:22 PM

If you're still having problems, I would recommend reading this thread: http://eqemulator.org/forums/showthread.php?t=30773 and using the script described there.

I started out with trying to use the Debian guide, and had a lot of problems along the way. Snag the later version of the script from that other thread, and then add into the section where it adds links a link for commands.pl and login.ini. I'm not sure of the exact directory locations at this time. You might be able to get that setup script working with your existing installation, but you may need to rename some directories or move things around. I know that the script creates a lot of soft links into the server directory that you do not create (and need) when using the Debian guide.

If you're planning on running your own login server and running locally only in your LAN, I would recommend setting the address and local address values in eqemu_config.xml. A couple of guides out there say it is unnecessary, but I had to do that in order to get up and running.

Jster22 05-28-2010 07:31 PM

Hello trevius and Mirakus,

Thanks for the replies. I will look into both of your suggestions. Hopefully I can get this working. I'm sure I'll be replying back with more questions.

trevius, I have logged into your server before. You have done a very good job with it.

Jster22 05-28-2010 10:01 PM

Mirakus,

I don't know the exact commands for adding the links for commands.pl and login.ini. I did find those files in eqemulator/projecteqemu/utils/defaults/commands.pl and eqemulator/projecteqemu/EQEmuLoginServer/login_util/login.ini. Would this mean the link commands would look like this
Code:

user@server:/home/eqemulator/server$ ln -s ../projecteqemu/utils/defaults/commands.pl \
done
user@server:/home/eqemulator/server$ ln -s ../projecteqemu/EQEmuLoginServer/login_util/login.ini \
done

That doesn't seem right to me. Any ideas on this?

My end goal is to set up a private server for a few of my friends and myself. They live in different cities so I will need to setup a login server.

Thank you for taking time to help me.

Kobaz 05-29-2010 04:38 AM

Assuming you're in your server directory, the command you want will look like:

Code:

ln -s ../projecteqemu/utils/defaults/commands.pl .
The keywork "done" terminates a loop block, such as a for or while loop.

Jster22 06-01-2010 07:46 PM

Thanks for the clarification Kobaz.

After running the script that Mirakus suggested, it said to cd into projecteqemu and make it. It errored out, so I tried it again and it errored out again. I'm not sure how to resolve this. Below is the error message from my second attempt.
Quote:

make -C EMuShareMem
make[1]: Entering directory `/home/eqemulator/projecteqemu/EMuShareMem'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/eqemulator/projecteqemu/EMuShareMem'
make -C world
make[1]: Entering directory `/home/eqemulator/projecteqemu/world'
gcc -c -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wcomment -Wcast-align -Wno-deprecated -g -march=i686 -O -pthread -pipe -I../common/SocketLib -DFX -D_GNU_SOURCE -DINVERSEXY -DWORLD -DDEBUG=5 -DEQDEBUG=5 -DSHAREMEM -DCATCH_CRASH -DNO_PIDLOG -DFIELD_ITEMS -DIRC -Di386 -DAPP_OPCODE_SIZE=2 -DEMBPERL -DEMBPERL_PLUGIN -DHAS_UNION_SEMUN -I/usr/include/mysql -DBIG_JOINS=1 -fPIC -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib/perl/5.10/CORE Adventure.cpp -o Adventure.o
Adventure.cpp: In member function ‘void Adventure::MoveCorpsesToGraveyard()’:
Adventure.cpp:381: error: ‘atoi’ was not declared in this scope
make[1]: *** [Adventure.o] Error 1
make[1]: Leaving directory `/home/eqemulator/projecteqemu/world'
make: *** [all] Error 2

Mirakus 06-02-2010 09:41 AM

Jster22, the errors you listed are caused by the latest version of GCC. With some of the older versions, you would not have gotten that error. At the very top of both <yoursourcedir>/world/Adventure.cpp and <yoursourcedir>/world/AdventureManager.cpp, put #include <stdlib.h>

That should resolve your error.

Jster22 06-02-2010 08:19 PM

Thanks Mirakus. I didn't get any build errors after making those changes.

The next step is to "Build the login server". I assume that this means to cd into projecteqemu/EQEmuLoginServer and make. However, I get another error.
Quote:

gcc -o EQEmuLoginServer Client.o ClientManager.o Config.o DatabaseMySQL.o ErrorLog.o Main.o ServerManager.o WorldServer.o .obj/BasePacket.o .obj/Condition.o .obj/CRC16.o .obj/crc32.o .obj/debug.o .obj/emu_opcodes.o .obj/EmuTCPConnection.o .obj/EmuTCPServer.o .obj/EQPacket.o .obj/EQStream.o .obj/EQStreamFactory.o .obj/logsys.o .obj/logsys_eqemu.o .obj/misc.o .obj/MiscFunctions.o .obj/Mutex.o .obj/opcodemgr.o .obj/packet_dump.o .obj/packet_functions.o .obj/rdtsc.o .obj/TCPConnection.o .obj/TCPServer.o .obj/timeoutmgr.o .obj/timer.o .obj/unix.o -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wno-deprecated -Wcomment -Wcast-align -O -g -march=i686 -pthread -pipe -DEQLAUNCH -DEQDEBUG=5 -I/usr/include/mysql -DBIG_JOINS=1 -fPIC -rdynamic -L. -lstdc++ -ldl -L/usr/lib/mysql -lmysqlclient -lEQEmuAuthCrypto -lcryptopp
/usr/bin/ld: cannot find -lEQEmuAuthCrypto
collect2: ld returned 1 exit status
make: *** [EQEmuLoginServer] Error 1
I assume that this is a similar issue but I'm not sure which file(s) need to be edited.

Also looking ahead at the next steps, what is the file eqemu_config.xml used for? It says that I need to create/edit it. What needs to be in there? As well as the next step which is "Create/Edit your login server configuration"

Thanks again for your help!

Mirakus 06-03-2010 12:10 AM

Okay, I'm not sure why, but the AuthCrypto files needed by the login server are pre-built into static libraries, probably for security reasons, although I'm clueless as to the true reason why.

In the login server directory, there is another directory called login_util, or something similar. Navigate through to the linux folder, and then you should see a couple of zip files based on distribution. Choose the one closest to your distribution, and unzip the .a (static libraries on linux) into the main directory for the login server, then try making again. There isn't a file in there for every distrib; just choose the one closest. I used the RedHat64 one for a Debian 64-bit system and it worked fine. After that lib is in the LoginServer directory, it should build fine.

The eqemu_config.xml is kind of like an overall configuration file for your world server, not the login server. This is the place you will set up your ip's, ports, etc. This page: http://www.eqemulator.net/wiki/wikka...rConfiguration documents the file pretty well, although some of the things can be kind of misleading, depending on your exact intentions. For example, it says you do not need to set the ips at the beginning, but I had to in order to get things working. If you are just running over a lan, I would set both the address and local address to your local ip, or the address to your WAN address if you're opening up for friends on the internet. It may be possible that it's not necessary to modify those lines (uncommenting them - the <!-- in xml represent beginning of comments), but for whatever reason, I had to uncomment and set them to get things working on two different servers.

Your "login server configuration" refers to your login.ini file while is also located in the login_util directory of the login server directory. I just made a link to mine in the server directory, since that's where the script starts from, but if you're planning on using the official eqemulator login server, you probably don't want to do that. You will also need to set your necessary port and database information in that file.

Please someone correct me if I'm wrong on any of this!

orkim 06-03-2010 09:29 AM

You pretty much got it there Mirakus.

One note I will add, is "adding your ip to the top of the config file" portion from above.

Typically when the world server connects to the login server it will save the IP address from which the world server connected. Say, world server at 1.2.3.4 connects to login server at 4.3.2.1, therefor the login server knows the public IP address of the world server.

However, when you run both on the same machine (or within a LAN and desire outside connections) this can be a bit tricky. Local LAN + outside connections typically runs into some routing problems (i.e. route the internal LAN packets properly using internal addresses and still listen/respond to external addresses). If you're not concerned about external connections (i.e. from the internet) then you have a easier job. But I digress...

Here in lies the rub, the login server will not know the public/private IP address to which it should use to connect to the world server. This is why when you are running the login server and world server on a single machine you MUST set these fields. Otherwise the 'IP' gets recorded as 127.0.0.1 and all clients are then routed back to themselves (127.0.0.1) to look for the worldserver, which of course isn't there.

As clear as mud?

Hope that helps.

-ork

Jster22 06-05-2010 01:54 PM

Thanks for the replies Mirakus and orkim.

In my login_util>linux there are the folders fedora-12-64, gentoo32, and ubuntu-9-10-32. I chose ubuntu. I moved the files into EQEmuLoginServer and ran make. I believe it built ok this time.
Quote:

gcc -o EQEmuLoginServer Client.o ClientManager.o Config.o DatabaseMySQL.o ErrorLog.o Main.o ServerManager.o WorldServer.o .obj/BasePacket.o .obj/Condition.o .obj/CRC16.o .obj/crc32.o .obj/debug.o .obj/emu_opcodes.o .obj/EmuTCPConnection.o .obj/EmuTCPServer.o .obj/EQPacket.o .obj/EQStream.o .obj/EQStreamFactory.o .obj/logsys.o .obj/logsys_eqemu.o .obj/misc.o .obj/MiscFunctions.o .obj/Mutex.o .obj/opcodemgr.o .obj/packet_dump.o .obj/packet_functions.o .obj/rdtsc.o .obj/TCPConnection.o .obj/TCPServer.o .obj/timeoutmgr.o .obj/timer.o .obj/unix.o -Wall -Wuninitialized -Wwrite-strings -Wcast-qual -Wno-deprecated -Wcomment -Wcast-align -O -g -march=i686 -pthread -pipe -DEQLAUNCH -DEQDEBUG=5 -I/usr/include/mysql -DBIG_JOINS=1 -fPIC -rdynamic -L. -lstdc++ -ldl -L/usr/lib/mysql -lmysqlclient -lEQEmuAuthCrypto -lcryptopp
Reading the eqemu_config.xml configuration guide, it says the file should be located in world/eqlaunch/zone. However, I found my file in projecteqemu/utils/defaults. Is this ok?

My goal is to open this server up for my friends to log on to. They live in different cities so I wont be connecting using LAN. Is there an easy way to find your WAN ip? I just went to whatismyip.com and put that value in for both <address> and <localaddress>. Or does localaddress need to be 127.0.0.1? Following the guide, this is my eqemu_config.xml file currently
Code:

<?xml version="1.0">
<server>
        <world>
                <shortname>setme</shortname>
                <longname>I Forgot To Edit My Config</longname>
                <address>(whatismyip.com)</address>
                <localaddress>(whatismyip.com)</localaddress>
                <key>some long random string</key>
        </world>
        <database>
                <host>localhost</host>
                <port>3306</port>
                <username>eq</username>
                <password>eq</password>
                <db>eq</db>
        </database>
</server>

I don't have a database set up yet. I am having problems installing mysql. I install it using the command "apt-get install mysql-server" but when I type "mysql -u root" to set up the root account, I get this error "ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)". How do I completely remove mysql-server and start again? Or is there another way to fix this?

I will work on login.ini after I have eqemu_config.xml configured and mysql working.

Thanks again for your help. I am looking forward to getting this running!

pfyon 06-05-2010 03:17 PM

sudo apt-get remove mysql-server

I remember getting that error with mysql when I set up my server too, will have to try to remember how I fixed it.

Jster22 06-05-2010 03:31 PM

Hi pfyon, I removed mysql and reinstalled but still get the same error. Please let me know if you remember how you got around this error.

Thanks.

Jster22 06-05-2010 06:58 PM

I wanted to post an update in case anyone else runs into this problem because I think I have found a solution.

I ran "sudo ln -s /etc/mysql/my.cnf /etc/my.cnf" because I think it was looking for /etc/my.cnf instead of /etc/mysql/my.cnf. This seems to have fixed that problem. When I ran mysql -u root again I got a new error "ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)". I fixed that by running "mysql --user=root -p" and entering a new password.

I think I have mysql set up correctly. I am going to work on sourcing my database. However, the guide says that the databasefile.sql should be in server/database but I don't have the database directory. I'm going to try and find it. Does my eqemu_config.xml look correct from a couple posts back?

Thank you.

pfyon 06-05-2010 07:32 PM

Ah yeah that was the problem.

You'll have to get a database for that. The most popular one is over at project eq (http://www.projecteq.net). You can download a recent release in the downloads section of the google code page (http://code.google.com/p/projecteqdb/) or check it out from the svn to get the most recent version (svn co http://projecteqdb.googlecode.com/svn/trunk/ ).

Jster22 06-06-2010 12:13 AM

Thanks for the info about the database pfyon. I checked out the code and believe I got it all sources correctly. I am just waiting on word if I have create my eqemu_config.xml file correctly from post 12?

On a side note, I sourced load_bots.sql and got some errors. Note sure if they need to be fixed since this source was optional.
Quote:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROP TABLE IF EXISTS `botpetinventory`' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROP TABLE IF EXISTS `botbuffs`' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER $$
DROP FUNCTION IF EXISTS `GetMobType` $$
CREATE FUNCTION `GetMobT' at line 1
ERROR 1193 (HY000): Unknown system variable 'Result'
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IF (select count(*) from character_ where name = mobname) > 0 THEN
SET Res' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELSEIF (select count(*) from bots where Name = mobname) > 0 THEN
SET Resul' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'END IF' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'RETURN Result' at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'END $$
DELIMITER' at line 1
ERROR 1305 (42000): FUNCTION eqdb.GetMobType does not exist
Thanks.

Jster22 06-07-2010 07:20 PM

I believe I have gone through all the steps to set up the server, but I can't get it to start. I don't know if I have set up eqemu_config.xml file correctly. I tried ./start and this is the output. Is this working correctly?
Quote:

+ LNAME=zone
+ '[' '\1' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_4267.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_4267.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_4316.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_4316.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_chatchannels.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_chatchannels.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_mail.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_mail.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_world.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_world.log
+ '[' '!' -e .lock-world ']'
+ touch .lock-world
+ '[' 1 ']'
+ ./persist_world
+ sleep 15
+ '[' '!' -e .lock-launcher ']'
+ touch .lock-launcher
+ '[' 1 ']'
+ ./eqlaunch zone
+ ./chatserver
+ '[' 1 ']'
+ ./mailserver
Thanks!

Jster22 06-10-2010 02:36 AM

I am still not able to get my server running. Looking in my server log files I keep seeing "Unable to load 'eqemu_config.xml': Failed to open file". Where does this file need to be located? Right now its in utils/defaults/. I'm not even sure I have it configured correctly. I posted it back in post 12 I think. Does it look right? Anything else I am missing to get this server started?

Thanks.

Jster22 06-12-2010 04:30 PM

Please help, I can't get this to work. I feel like I am talking to a wall now. I have completely wiped everything and started from scratch and still am stuck. Here is where I am at.

My directory structure:
home/eqemulator/projecteqemu
home/eqemulator/server
home/eqemulator/eqemumaps
home/eqemulator/projecteqdb
home/eqemulator/projecteqquests

I have ran make in projecteqemu/EQEmuServer/ and projecteqemu/EQEmuServer/EQEmuLoginServer folders successfully.

I have created and sourced my database successfully.

I modified eqemu_config.xml (as shown back in post 12). I moved it from projecteqemu/EQEmuServer/utils/defaults/ to projecteqemu/EQEmuServer/zone/

What am I missing?

In eqemulator/server i ran ./start I get the following output.
Quote:

./start: line 11: ./EQEmuLoginServer: No such file or directory
+ LNAME=zone
+ '[' '' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ '[' '!' -e .lock-world ']'
+ '[' '!' -e .lock-launcher ']'
+ '[' 1 ']'
+ ./chatserver
./start: line 73: ./chatserver: No such file or directory
+ '[' 1 ']'
+ ./mailserver
./start: line 78: ./mailserver: No such file or directory
I have checked eqemulator/server/logs and all logs are empty.

Please, any help? Thanks!

Jster22 06-15-2010 08:03 PM

I have moved spells_us.txt into home/eqemulator/server. I don't have a copy of spells_en.txt. Could someone send that to me please?

Any suggestions about my last post?

Thanks.

Jster22 06-20-2010 05:37 PM

bump
Still looking for help. Thanks.

trevius 06-20-2010 07:39 PM

You don't really need the spell files anymore. It doesn't hurt to have them there, but spells are loaded from the database now.

You will need to move your config file directly into your server folder, NOT zone or any other folder.

In your config file, you can probably just comment these lines out or just remove them:
Code:

                <address>(whatismyip.com)</address>
                <localaddress>(whatismyip.com)</localaddress>

And you are going to need to create symbolic links for all of your files. That is why you are getting errors for the EQEmuLoginServer, and the mail and chat servers. In your case, you want to do something like this:

Code:

cd /home/eqemulator/server
ln -s ../projecteqemu/EQEmuServer/utils/defaults/* .
ln -s ../projecteqemu/EQEmuServer/utils/patch_* .
ln -s ../projecteqemu/EQEmuServer/utils/cleanipc
ln -s ../projecteqemu/EQEmuServer/world/world
ln -s ../projecteqemu/EQEmuServer/zone/zone
ln -s ../projecteqemu/EQEmuServer/EMuShareMem/libEMuShareMem.so
ln -s ../projecteqemu/EQEmuServer/eqlaunch/eqlaunch
ln -s ../projecteqemu/EQEmuServer/EQEmuLoginServer/EQEmuLoginServer
ln -s ../projecteqemu/EQEmuServer/ucs/ucs
ln -s ../projecteqemu/EQEmuServer/mailserver/mailserver
ln -s ../projecteqemu/EQEmuServer/chatserver/chatserver

This is basically like creating shortcuts to all of these files, so you can leave them in your source folder and update them or whatever, and always have access to them right from your server folder for scripts and starting the server.

Jster22 06-21-2010 08:59 PM

Hi trevius. Thank you for your reply.

I made the changes you suggested and ran ./start and received the following errors.
Quote:

user@comp:/home/eqemulator/server$ sudo ./start
./start: line 11: ../projecteqemu/EQEmuServer/EQEmuLoginServer: is a directory
+ LNAME=zone
+ '[' '' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ '[' '!' -e .lock-world ']'
+ '[' '!' -e .lock-launcher ']'
+ '[' 1 ']'
+ ../projecteqemu/EQEmuServer/chatserver
./start: line 73: ../projecteqemu/EQEmuServer/chatserver: is a directory
+ '[' 1 ']'
+ ../projecteqemu/EQEmuServer/mailserver
./start: line 78: ../projecteqemu/EQEmuServer/mailserver: is a directory
What is the error "is a directory"? Isn't it supposed to point to the directory?

The original lines looked like "./EQEmuLoginServer" and "./chatserver" etc. But they gave the error "No such file or directory" so I modified my start script to point to the folder locations.

All of my server logs are empty.

Thanks.

trevius 06-21-2010 10:41 PM

do a "ls -la" in your server folder and post it.

Jster22 06-22-2010 07:18 PM

user@comp:/home/eqemulator/server$ ls -la
total 9028
drwxr-xr-x 3 root root 4096 2010-06-21 19:02 .
drwxr-xr-x 7 root root 4096 2010-06-12 11:00 ..
lrwxrwxrwx 1 root root 28 2010-06-12 11:12 chatserver -> source/chatserver/chatserver
lrwxrwxrwx 1 root root 21 2010-06-12 11:12 cleanipc -> source/utils/cleanipc
lrwxrwxrwx 1 root root 42 2010-06-12 11:11 commands.pl -> ../projecteqemu/utils/defaults/commands.pl
-rw-r--r-- 1 root root 640140 2010-06-12 21:53 crashlog
-rw-r--r-- 1 root root 845 2010-06-12 11:13 eqemu.conf
-rw-r--r-- 1 root root 596 2010-06-21 18:47 eqemu_config.xml
lrwxrwxrwx 1 root root 43 2010-06-12 11:12 eqemu_config.xml.full -> source/utils/defaults/eqemu_config.xml.full
lrwxrwxrwx 1 root root 40 2010-06-12 11:12 EQEmuLoginServer -> source/EQEmuLoginServer/EQEmuLoginServer
lrwxrwxrwx 1 root root 24 2010-06-12 11:12 eqlaunch -> source/eqlaunch/eqlaunch
lrwxrwxrwx 1 root root 36 2010-06-12 11:12 libEMuShareMem.so -> source/EMuShareMem/libEMuShareMem.so
lrwxrwxrwx 1 root root 29 2010-06-12 11:12 log.ini -> source/utils/defaults/log.ini
lrwxrwxrwx 1 root root 65 2010-06-12 11:11 login.ini -> ../projecteqemu/EQEmuServer/EQEmuLoginServer/login_util/login.ini
lrwxrwxrwx 1 root root 53 2010-06-12 11:12 login_opcodes.conf -> source/EQEmuLoginServer/login_util/login_opcodes.conf
lrwxrwxrwx 1 root root 57 2010-06-12 11:12 login_opcodes_sod.conf -> source/EQEmuLoginServer/login_util/login_opcodes_sod.conf
drwxr-xr-x 2 root root 4096 2010-06-12 14:21 logs
lrwxrwxrwx 1 root root 30 2010-06-12 11:12 mail_opcodes.conf -> source/utils/mail_opcodes.conf
lrwxrwxrwx 1 root root 28 2010-06-12 11:12 mailserver -> source/mailserver/mailserver
lrwxrwxrwx 1 root root 17 2010-06-12 11:11 Maps -> ../eqemumaps/Maps
lrwxrwxrwx 1 root root 32 2010-06-12 11:12 mime.types -> source/utils/defaults/mime.types
lrwxrwxrwx 1 root root 25 2010-06-12 11:12 opcodes.conf -> source/utils/opcodes.conf
lrwxrwxrwx 1 root root 27 2010-06-12 11:12 patch_6.2.conf -> source/utils/patch_6.2.conf
lrwxrwxrwx 1 root root 35 2010-06-12 11:12 patch_Anniversary.conf -> source/utils/patch_Anniversary.conf
lrwxrwxrwx 1 root root 28 2010-06-12 11:12 patch_Live.conf -> source/utils/patch_Live.conf
lrwxrwxrwx 1 root root 27 2010-06-12 11:12 patch_SoD.conf -> source/utils/patch_SoD.conf
lrwxrwxrwx 1 root root 27 2010-06-12 11:12 patch_SoF.conf -> source/utils/patch_SoF.conf
lrwxrwxrwx 1 root root 32 2010-06-12 11:12 patch_Titanium.conf -> source/utils/patch_Titanium.conf
-rwxr-xr-x 1 root root 199 2010-06-12 11:16 persist_world
lrwxrwxrwx 1 root root 31 2010-06-12 11:12 plugin.pl -> source/utils/defaults/plugin.pl
lrwxrwxrwx 1 root root 26 2010-06-12 11:11 plugins -> ../projecteqquests/plugins
lrwxrwxrwx 1 root root 18 2010-06-12 11:11 quests -> ../projecteqquests
lrwxrwxrwx 1 root root 16 2010-06-12 11:12 source -> ../projecteqemu/
-rw-r--r-- 1 server server 8541820 2010-06-15 18:05 spells_us.txt
-rwxr-xr-x 1 root root 1716 2010-06-21 18:58 start
-rwxr-xr-x 1 root root 852 2010-06-12 11:16 stop
lrwxrwxrwx 1 root root 31 2010-06-12 11:12 templates -> source/utils/defaults/templates
lrwxrwxrwx 1 root root 35 2010-06-21 18:50 ucs -> ../projecteqemu/EQEmuServer/ucs/ucs
lrwxrwxrwx 1 root root 18 2010-06-12 11:12 world -> source/world/world
-rw-r--r-- 1 root root 0 2010-06-21 19:02 .world_shutdown
lrwxrwxrwx 1 root root 29 2010-06-12 11:12 worldui -> source/utils/defaults/worldui
lrwxrwxrwx 1 root root 32 2010-06-12 11:12 worldui.pl -> source/utils/defaults/worldui.pl
lrwxrwxrwx 1 root root 16 2010-06-12 11:12 zone -> source/zone/zone
-rw-r--r-- 1 root root 0 2010-06-21 19:02 .zone_shutdown

trevius 06-23-2010 09:55 AM

Looks like part of your problem is that you named your server's source folder "projecteqemu" instead of "source" like the guide said, but you still created links to the non-existent source folder. You need to remove those links and remake new ones pointing to the correct path.

The ucs link below is pointing to the right place, but the world is not. I am not exactly sure how you even started the server at all unless you also made a folder named source and put the EQEmuServer code in there.

lrwxrwxrwx 1 root root 35 2010-06-21 18:50 ucs -> ../projecteqemu/EQEmuServer/ucs/ucs
lrwxrwxrwx 1 root root 18 2010-06-12 11:12 world -> source/world/world

Jster22 06-23-2010 08:34 PM

Hi trevius. Thanks for replying!

My source folder is called projecteqemu because that is how the script by orkim creates it. I removed the bad links and created the correct ones.

I ran ./start with the following output
Code:

user@comp:/home/eqemulator/server$ sudo ./start
+ LNAME=zone
+ '[' '' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ '[' '!' -e .lock-world ']'
+ '[' '!' -e .lock-launcher ']'
+ touch .lock-launcher
+ ./eqlaunch zone
+ '[' 1 ']'
+ ./chatserver
+ '[' 1 ']'
+ ./mailserver

It generated log files this time. Here are the logs with errors:
Code:

login_1277338648.log
-------------------------------------------------------------------------
[Debug] [06.23.10 - 18:17:28] Logging System Init.
[Debug] [06.23.10 - 18:17:28] Config System Init.
[Error] [06.23.10 - 18:17:28] Config::Parse(), file was unable to be opened for parsing.
[Error] [06.23.10 - 18:17:28] Database Initialization Failure.
[Debug] [06.23.10 - 18:17:28] Config System Shutdown.
[Debug] [06.23.10 - 18:17:28] Log System Shutdown.

world
-------------------------------------------------------------------------
[Debug] Starting Log: logs/eqemu_debug_world.log
[Debug] [COMMON__THREADS] Starting TCPServerLoop with thread ID -1223545968
[Debug] [COMMON__THREADS] Starting TCPServerLoop with thread ID -1231938672
[Debug] [WORLD__INIT] Loading server configuration..
[Debug] [WORLD__INIT] Log settings loaded from log.ini
[Debug] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEmulator 0.8.0
[Debug] [WORLD__INIT] Connecting to MySQL...
[Status] Starting Log: logs/eqemu_world.log
[Status] Using database 'eqdb' at localhost:3306
[Debug] [COMMON__THREADS] Starting DBAsyncLoop with thread ID -1240331376
[Debug] [WORLD__INIT] HTTP world service disabled.
[Debug] [WORLD__INIT] Loading variables..
[Debug] [WORLD__INIT] Loading zones..
[Debug] [WORLD__INIT] Clearing groups..
[Debug] [WORLD__INIT] Clearing raids..
[Debug] [WORLD__INIT] Loading items..
[Status] libEMuShareMem.so loaded
[Warning] requested shared memory of size:55174280 but that Key is already in use with size:1
[Warning] Resize not possible
[Warning] Could not attach to shared memory proceeding on isolated memory (share_id <= 0)
[Status] Loading items from database: count=83375
[Debug] [WORLD__INIT] Loading guilds..
[Debug] [WORLD__INIT] Loaded default rule set 'default'
[Debug] [WORLD__INIT] Clearing temporary merchant lists..
[Debug] [WORLD__INIT] Loading EQ time of day..
[Error] Starting Log: logs/eqemu_error_world.log
[Error] Could not load EQTime file eqtime.cfg
[Debug] [WORLD__INIT_ERR] Unable to load eqtime.cfg
[Debug] [WORLD__INIT] Loading launcher list..
[Debug] [WORLD__INIT] Reboot zone modes ON
[Debug] [WORLD__INIT] Deleted 0 stale player corpses from database
[Debug] [WORLD__INIT] Deleted 0 stale player backups from database
[Debug] [WORLD__INIT] Loading adventures...
[Debug] [WORLD__INIT] Purging expired instances
[Debug] [WORLD__INIT] Zone (TCP) listener started.
[Debug] [COMMON__THREADS] Starting EQStreamFactoryReaderLoop with thread ID -1303954544
[Debug] [COMMON__THREADS] Starting EQStreamFactoryWriterLoop with thread ID -1312347248
[Debug] [WORLD__INIT] Client (UDP) listener started.
[Debug] [NET__IDENTIFY] Registered patch 6.2
[Debug] [NET__IDENTIFY] Registered patch Titanium
[Debug] [NET__IDENTIFY] Registered patch SoF
[Debug] [NET__IDENTIFY] Registered patch SoD
[Debug] [NET__IDENTIFY] Registered patch Live
[Debug] [WORLD__SHUTDOWN] Caught signal 2
[Debug] [WORLD__SHUTDOWN] World main loop completed.
[Debug] [WORLD__SHUTDOWN] Shutting down console connections (if any).
[Debug] [WORLD__SHUTDOWN] Shutting down zone connections (if any).
[Debug] [WORLD__SHUTDOWN] Zone (TCP) listener stopped.
[Debug] [COMMON__THREADS] Ending TCPServerLoop with thread ID -1223545968
[Debug] [WORLD__SHUTDOWN] Client (UDP) listener stopped.
[Debug] [WORLD__SHUTDOWN] Signaling HTTP service to stop...
[Debug] [COMMON__THREADS] Ending EQStreamFactoryWriterLoop with thread ID -1312347248
[Debug] [WORLD__HTTP] Requesting that HTTP Service stop.
[Debug] [COMMON__THREADS] Ending TCPServerLoop with thread ID -1231938672
[Debug] Starting Log: logs/eqemu_debug_world.log
[Debug] [COMMON__THREADS] Starting TCPServerLoop with thread ID -1223873648
[Debug] [COMMON__THREADS] Starting TCPServerLoop with thread ID -1232266352
[Debug] [WORLD__INIT] Loading server configuration..
[Debug] [WORLD__INIT] Log settings loaded from log.ini
[Debug] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEmulator 0.8.0
[Debug] [WORLD__INIT] Connecting to MySQL...
[Status] Starting Log: logs/eqemu_world.log
[Status] Using database 'eqdb' at localhost:3306
[Debug] [COMMON__THREADS] Starting DBAsyncLoop with thread ID -1240659056
[Debug] [WORLD__INIT] HTTP world service disabled.
[Debug] [WORLD__INIT] Loading variables..
[Debug] [WORLD__INIT] Loading zones..
[Debug] [WORLD__INIT] Clearing groups..
[Debug] [WORLD__INIT] Clearing raids..
[Debug] [WORLD__INIT] Loading items..
[Status] libEMuShareMem.so loaded
[Warning] requested shared memory of size:55174280 but that Key is already in use with size:1
[Warning] Resize not possible
[Warning] Could not attach to shared memory proceeding on isolated memory (share_id <= 0)
[Status] Loading items from database: count=83375
[Debug] [WORLD__INIT] Loading guilds..
[Debug] [WORLD__INIT] Loaded default rule set 'default'
[Debug] [WORLD__INIT] Clearing temporary merchant lists..
[Debug] [WORLD__INIT] Loading EQ time of day..
[Debug] [WORLD__INIT] Loading launcher list..
[Debug] [WORLD__INIT] Reboot zone modes ON
[Debug] [WORLD__INIT] Deleted 0 stale player corpses from database
[Debug] [WORLD__INIT] Deleted 0 stale player backups from database
[Debug] [WORLD__INIT] Loading adventures...
[Debug] [WORLD__INIT] Purging expired instances
[Debug] [WORLD__INIT] Zone (TCP) listener started.
[Debug] [COMMON__THREADS] Starting EQStreamFactoryReaderLoop with thread ID -1304278128
[Debug] [WORLD__INIT] Client (UDP) listener started.
[Debug] [COMMON__THREADS] Starting EQStreamFactoryWriterLoop with thread ID -1312670832
[Debug] [NET__IDENTIFY] Registered patch 6.2
[Debug] [NET__IDENTIFY] Registered patch Titanium
[Debug] [NET__IDENTIFY] Registered patch SoF
[Debug] [NET__IDENTIFY] Registered patch SoD
[Debug] [NET__IDENTIFY] Registered patch Live
[Debug] [WORLD__ZONE] New TCP connection from 127.0.0.1:60985
[Debug] [WORLD__CONSOLE] New launcher from 127.0.0.1:60985
[Debug] [WORLD__LAUNCH] Adding pending launcher 1
[Debug] [WORLD__LAUNCH] Launcher Identified itself as 'zone'. Loading zone list.
[Debug] [WORLD__LAUNCH] Removing pending launcher 1. Adding zone to active list.
[Debug] [WORLD__LAUNCH] zone: dynamic_01 reported state STARTED (1 starts)
[Debug] [WORLD__SHUTDOWN] Caught signal 15
[Debug] [WORLD__SHUTDOWN] World main loop completed.
[Debug] [WORLD__SHUTDOWN] Shutting down console connections (if any).
[Debug] [WORLD__SHUTDOWN] Shutting down zone connections (if any).
[Debug] [WORLD__SHUTDOWN] Zone (TCP) listener stopped.
[Debug] [COMMON__THREADS] Ending TCPServerLoop with thread ID -1223873648
[Debug] [WORLD__SHUTDOWN] Client (UDP) listener stopped.
[Debug] [WORLD__SHUTDOWN] Signaling HTTP service to stop...
[Debug] [WORLD__HTTP] Requesting that HTTP Service stop.
[Debug] [COMMON__THREADS] Ending EQStreamFactoryWriterLoop with thread ID -1312670832
[Debug] [COMMON__THREADS] Ending TCPServerLoop with thread ID -1232266352

eqemu_error_world.log
-------------------------------------------------------------------------
4589 [06.23. - 18:15:49] Starting Log: logs/eqemu_error_world.log
4589 [06.23. - 18:15:49] Could not load EQTime file eqtime.cfg

loginserver
-------------------------------------------------------------------------
[Debug] [06.23.10 - 18:17:28] Logging System Init.
[Debug] [06.23.10 - 18:17:28] Config System Init.
[Error] [06.23.10 - 18:17:28] Config::Parse(), file was unable to be opened for parsing.
[Error] [06.23.10 - 18:17:28] Database Initialization Failure.
[Debug] [06.23.10 - 18:17:28] Config System Shutdown.
[Debug] [06.23.10 - 18:17:28] Log System Shutdown.

Thanks again for helping me trevius!

Jster22 06-23-2010 11:30 PM

One more thing. My ./start output in the post above is from my second time running the command. I noticed that the output from the first time running it was different. So I ran ./stop and then tried ./start again. Here is the output from the first time running it.

I get the error "shmat failed! Invalid argument"
Code:

user@comp:/home/eqemulator/server$ sudo ./start
+ LNAME=zone
+ '[' '' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_chatchannels.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_chatchannels.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_5702.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_5702.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_chatchannels.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_chatchannels.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_mail.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_mail.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_world.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_world.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_zone.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_zone.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_mail.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_mail.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_world.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_world.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_zone.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_zone.log
+ '[' '!' -e .lock-world ']'
+ touch .lock-world
+ '[' 1 ']'
+ ./persist_world
+ sleep 15
shmat failed! Invalid argument
+ '[' '!' -e .lock-launcher ']'
+ touch .lock-launcher
+ ./eqlaunch zone
+ '[' 1 ']'
+ ./chatserver
+ '[' 1 ']'
+ ./mailserver

Thanks.

Jster22 06-24-2010 11:42 PM

I figured out that I was getting the error ""shmat failed! Invalid argument" because I didn't increase shared memory limit. I increased it and tried to start the server. Here is the output from that. Are there any logs I should post?
Quote:

user@comp:/home/eqemulator/server$ sudo ./start
+ LNAME=zone
+ '[' '' = test ']'
+ P=/home/eqemulator/server
+ export LD_LIBRARY_PATH=:/home/eqemulator/server
+ LD_LIBRARY_PATH=:/home/eqemulator/server
+ mkdir -p logs
+ '[' '!' -e .lock-zones -a '!' -e .lock-world ']'
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_chatchannels.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_chatchannels.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_5777.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_5777.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_chatchannels.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_chatchannels.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_mail.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_mail.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_world.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_world.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_debug_zone.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_debug_zone.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_mail.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_mail.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_quest_zone.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_quest_zone.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_world.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_world.log
+ for f in 'logs/eqemu_*.log'
+ '[' logs/eqemu_zone.log = logs/eqemu_commands_zone.log ']'
+ rm -f logs/eqemu_zone.log
+ '[' '!' -e .lock-world ']'
+ touch .lock-world
+ '[' 1 ']'
+ ./persist_world
+ sleep 15
+ '[' '!' -e .lock-launcher ']'
+ touch .lock-launcher
+ '[' 1 ']'
+ ./eqlaunch zone
+ ./chatserver
+ '[' 1 ']'
+ ./mailserver
Thank you!

Jster22 06-25-2010 07:52 PM

How can I tell if the world started properly? Will it show up on the Server List?

I checked through all the logs and only found one error that appeared in two files. The two files it appeared in are login_1277437359.log and loginserver.
Quote:

[Debug] [06.24.10 - 21:42:39] Logging System Init.
[Debug] [06.24.10 - 21:42:39] Config System Init.
[Error] [06.24.10 - 21:42:39] Config::Parse(), file was unable to be opened for parsing.
[Error] [06.24.10 - 21:42:40] Database Initialization Failure.
[Debug] [06.24.10 - 21:42:40] Config System Shutdown.
[Debug] [06.24.10 - 21:42:40] Log System Shutdown.
The error states that it is unable to open a file to parse. What file is it trying to open? I don't know how to fix this.

Thank you for your help!

Jster22 06-27-2010 05:33 PM

I have created a World Server Account in the User CP section. I added that to my eqemu_config.xml file. I ran ./start and received the same output with the same parse error posted above. My server did not appear on the server list page.

I don't understand what I am missing and why I can't get this running. I have followed the guides and the advice posted here. What else am I missing? I am looking forward to getting this server going. I would appreciate any continued help as I have been completely stuck! Or should I just give up? :???:

Thanks for your help!

Jster22 07-08-2010 02:22 PM

I thought I would give this one last bump before I accept defeat.

trevius 07-08-2010 05:19 PM

Maybe a Windows server would be better for you if you have too much trouble with Linux. You could even use the AX repack on Windows to make it pretty quick and simple:

http://www.eqemulator.org/forums/showthread.php?t=28190

pfyon 07-08-2010 07:13 PM

Did you check file permissions and ownership?

Jster22 07-08-2010 07:17 PM

trevius. I unfortunately don't have access to a windows machine and can't afford to buy the OS at this time. I'm just curious what I am currently missing . I have followed the guides and the advice in this thread and can't get it running. The server logs provide clues but not enough to debug (ie Config::Parse(), file was unable to be opened for parsing.)

pfyon, from what I understand, running command with "sudo" executes it as root. Is this sufficient? But no I have not check permissions/ownership.

pfyon 07-08-2010 11:42 PM

I'm too tired/busy to figure it out tonight, but perhaps tomorrow after work I'll see if I can figure out what you did and what's wrong.

Jster22 07-11-2010 06:32 PM

Hi pfyon, I look forward to seeing if you figure out what I am doing wrong! I feel like I am very close. I am excited to get this setup once and for all.

I suck at setting up servers obviously but I would like to return the favor to you somehow. This goes for trevius and the others who have helped me. I clearly can't do it without you guys! If you guys have servers, maybe I could somehow help with the game play?

pfyon 07-12-2010 07:50 AM

I think that most recent error is occurring because it's having issues with login.ini. Make sure it exists and the login server has read permissions set to it. I personally run EQEmuLoginServer from its own directory (not from the server root - when I set up my server, it wasn't functional yet).

What's ls -l look like for projecteqemu/EQEmuServer/EQEmuLoginServer/login_util/ ?

Jster22 07-12-2010 02:21 PM

Hi pfyon, login.ini exists in /projecteqemu/EQEmuServer/EQEmuLoginServer/login_util/login.ini.

user@comp:/home/eqemulator/projecteqemu/EQEmuServer/EQEmuLoginServer/login_util$ ls -l
total 44
-rw-r--r-- 1 root root 2796 2010-06-12 11:03 EQEmuLoginServerDBInstall.sql
-rw-r--r-- 1 root root 2524 2010-06-12 11:03 EQEmuLoginServerPostgreDBInstall.sql
drwxr-xr-x 6 root root 4096 2010-06-12 12:19 linux
-rw-r--r-- 1 root root 693 2010-06-12 14:13 login.ini
-rw-r--r-- 1 root root 298 2010-06-12 11:03 login_opcodes.conf
-rw-r--r-- 1 root root 298 2010-06-12 11:03 login_opcodes_sod.conf
drwxr-xr-x 5 root root 4096 2010-06-12 10:59 ms
-rw-r--r-- 1 root root 479 2010-06-12 11:03 tblLoginServerAccounts.sql
-rw-r--r-- 1 root root 469 2010-06-12 11:03 tblServerAdminRegistration.sql
-rw-r--r-- 1 root root 539 2010-06-12 11:03 tblServerListType.sql
-rw-r--r-- 1 root root 536 2010-06-12 11:03 tblWorldServerRegistration.sql


All times are GMT -4. The time now is 09:42 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.