Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 06-10-2010, 02:36 AM
Jster22
Fire Beetle
 
Join Date: Jun 2008
Location: Earth
Posts: 26
Default

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.
Reply With Quote
  #2  
Old 06-12-2010, 04:30 PM
Jster22
Fire Beetle
 
Join Date: Jun 2008
Location: Earth
Posts: 26
Default

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!
Reply With Quote
  #3  
Old 06-15-2010, 08:03 PM
Jster22
Fire Beetle
 
Join Date: Jun 2008
Location: Earth
Posts: 26
Default

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.
Reply With Quote
  #4  
Old 06-20-2010, 05:37 PM
Jster22
Fire Beetle
 
Join Date: Jun 2008
Location: Earth
Posts: 26
Default

bump
Still looking for help. Thanks.
Reply With Quote
  #5  
Old 06-20-2010, 07:39 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

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.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #6  
Old 06-21-2010, 08:59 PM
Jster22
Fire Beetle
 
Join Date: Jun 2008
Location: Earth
Posts: 26
Default

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.
Reply With Quote
  #7  
Old 06-21-2010, 10:41 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

do a "ls -la" in your server folder and post it.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

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


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3