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 05-30-2015, 08:40 AM
Rikon's Avatar
Rikon
Sarnak
 
Join Date: May 2010
Location: US
Posts: 87
Default

Any ideas? Should I recompile and try that? Again, the issue is that no other zones appear to be loading. The only one available in Gloomingdeep.

This is where I think the issue lies:

Reply With Quote
  #2  
Old 05-30-2015, 09:20 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

Read off what is in your launcher table.

Also how are you launching your server? Do you have a start shell script? If so see if you can copy and past it here.
Reply With Quote
  #3  
Old 05-30-2015, 12:32 PM
Rikon's Avatar
Rikon
Sarnak
 
Join Date: May 2010
Location: US
Posts: 87
Default

Quote:
Originally Posted by provocating View Post
Read off what is in your launcher table.

Also how are you launching your server? Do you have a start shell script? If so see if you can copy and past it here.
Launcher Table.



To launch the server, I have just been using TMUX to individual run ./shared_memory > ./world > ./zone

EDIT: Looking at the EQServer.sh script, I can see why things might not be working. Thank you Provocating.
Reply With Quote
  #4  
Old 05-30-2015, 01:00 PM
Rikon's Avatar
Rikon
Sarnak
 
Join Date: May 2010
Location: US
Posts: 87
Default

Here is the contents of the script.

Code:
ulimit -c unlimited
case "$1" in
	start)
		export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.

		rm -rf logs/*.log
		chmod --recursive ugo+rwx quests

		#sleep 5
		echo Loading Shared Mem...
		./shared_memory > /dev/null 2>&1 &
		
		echo Starting Login Server...
		./loginserver > /dev/null 2>&1 &
		echo $! > loginserver.pid

		sleep 2
		echo Starting World Server...
		./world > /dev/null 2>&1 &
		echo $! > world.pid

		sleep 3
		echo Starting Query Server...
		./queryserv > /dev/null 2>&1 &
		echo $! > queryserv.pid
		
		echo Starting UCS Server...
		./ucs > /dev/null 2>&1 &
		echo $! > ucs.pid

		sleep 5
		echo Starting the PEQ Zone Launcher...
		./eqlaunch peq > /dev/null 2>&1 &
		echo $! > eqlaunch.pid

		sleep 5
		echo The server is mostly ready... Give it a couple of minutes
		echo to load stuff from the database before the users start  logging in.
		;;
	stop)
		kill `cat loginserver.pid`
		kill `cat world.pid`
		kill `cat queryserv.pid`
		kill `cat ucs.pid`
		kill `cat eqlaunch.pid`
		rm -f *.pid
		echo All server components have been exited.
		;;
	restart|reload)
		$0 stop
		$0 start
		;;
	status)
		if [ -f loginserver.pid ] && ps -p `cat loginserver.pid` > /dev/null
                then
                        echo -e Login Server '\t\t' [$(tput bold)$(tput setaf 2)UP$(tput sgr0)]
                else
                        echo -e Login Server '\t\t' [$(tput bold)$(tput setaf 1)DOWN$(tput sgr0)]
                fi
		if [ -f world.pid ] && ps -p `cat world.pid` > /dev/null
		then
			echo -e World Server '\t\t'  [$(tput bold)$(tput setaf 2)UP$(tput sgr0)]
		else
			echo -e World Server '\t\t' [$(tput bold)$(tput setaf 1)DOWN$(tput sgr0)]
		fi
		if [ -f queryserv.pid ] && ps -p `cat queryserv.pid` > /dev/null
                then
                        echo -e Query Server '\t\t' [$(tput bold)$(tput setaf 2)UP$(tput sgr0)]
                else
                        echo -e Query Server '\t\t' [$(tput bold)$(tput setaf 1)DOWN$(tput sgr0)]
                fi
		if [ -f ucs.pid ] && ps -p `cat ucs.pid` > /dev/null
                then
                        echo -e UCS Server '\t\t' [$(tput bold)$(tput setaf 2)UP$(tput sgr0)]
                else
                        echo -e UCS Server '\t\t' [$(tput bold)$(tput setaf 1)DOWN$(tput sgr0)]
                fi
		if [ -f eqlaunch.pid ] && ps -p `cat eqlaunch.pid` > /dev/null
                then
                        echo -e Zone Launcher '\t\t' [$(tput bold)$(tput setaf 2)UP$(tput sgr0)]
                else
                        echo -e Zone Launcher '\t\t' [$(tput bold)$(tput setaf 1)DOWN$(tput sgr0)]
                fi
		;;
	help|*)
		printf "Usage: \n ./EQServer.sh [start|stop|reload|restart|status|help]"
		printf "\n\n"
		printf " start\t\tStarts the server components\n"
		printf " stop\t\tStops all the server components started by this script\n"
		printf " restart/reload\tRestarts the server\n"
		printf " status\t\tLists the status of the server components\n"
		printf " help\t\tDisplays this message\n"
		;;

	esac
Zone launcher looks fine, and I can log in-- so not sure what's up with Login Server.



Verified that I cannot #zone to any other zones. Same error message.
Reply With Quote
  #5  
Old 08-08-2015, 01:52 AM
mhoskiso
Fire Beetle
 
Join Date: Apr 2011
Location: US
Posts: 1
Default

Quote:
Originally Posted by Rikon View Post
Launcher Table.

[

To launch the server, I have just been using TMUX to individual run ./shared_memory > ./world > ./zone

.
I recently setup a server on Ubuntu 14.04. ./zone gave me the same issue with nothing but glooming deep working. To fix it, use ./eqlaunch zone
Reply With Quote
Reply


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 08:19 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