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 08-19-2015, 02:25 PM
Rikon's Avatar
Rikon
Sarnak
 
Join Date: May 2010
Location: US
Posts: 87
Default

Share what you have. I'd love to take a look.
Reply With Quote
  #2  
Old 08-19-2015, 02:28 PM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

This is mine for Chronicles of Norrath.

start

Code:
#!/bin/sh

cd /home/eq1

cp eqtime.bak eqtime.cfg

#ulimit -c 99999999

rm -f .zone_shutdown
rm -f .world_shutdown

set -x

P=`pwd`
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$P"

#make sure we have a place to log
mkdir -p logs 2>&1 > /dev/null

#clear out old logs, if both are stopped
if [ ! -e .lock-zones -a ! -e .lock-world ] ; then
  for f in logs/eqemu_*.log
  do
        if [ "$f" = "logs/eqemu_commands_zone.log" ]; then
                continue;
        fi

        rm -f $f
  done
fi

#start up the Shared Memory 
if [ ! -e .lock-memory ]; then
        touch .lock-memory
        ./shared_memory 2>&1 > logs/shared_memory &
        sleep 3
fi

#start up the logon server
if [ ! -e .lock-login ]; then
        touch .lock-login
        cd loginserver
        ./loginserver &
        cd ..
		sleep 2
fi

#boot up world
if [ ! -e .lock-world ] ; then
        touch .lock-world
       ./world 2>&1 > logs/world &
        # wait for shared memory to load
        sleep 15
fi

#start up the chat server 
if [ ! -e .lock-ucs ]; then
        touch .lock-ucs
        ./ucs &
        sleep 5
fi

#start up Queryserv 
if [ ! -e .lock-queryserv ]; then
        touch .lock-queryserv
        ./queryserv &
fi

#start up the official launcher
if [ ! -e .lock-static ]; then
        touch .lock-static
        ./eqlaunch static 2>&1 > logs/static &
        sleep 30
fi

#start up the official launcher
if [ ! -e .lock-launcher ]; then
        touch .lock-launcher
        ./eqlaunch zone 2>&1 > logs/launcher &
        sleep 30
fi
STOP

Code:
#!/bin/sh

touch .zone_shutdown
touch .world_shutdown

killall world ucs eqlaunch zone queryserv loginserver 
sleep 3

if ps ax|grep -e ucs -e w[o]rld -e z[o]ne -e eq[l]aunch -equeryserv -e [eqe]mu[l]ogin[s]erve >/dev/null; then
                killall -9 ucs world eqlaunch zone queryserv static loginserver
                sleep 2
fi

rm -f .lock-ucs .lock-zones .lock-world .lock-launcher .lock-queryserv .lock-memory .lock-static .lock-login
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 11:44 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