基于linux平台下domino启动脚本编写

Script as below:

#! /bin/sh
#
# A startup script for the ND server
# description: This script is used to start the domino server as a background process.
# Usage /etc/init.d/domino start|stop

# You should change the 3 following variables to reflect your environment.

# DOM_HOME is the variable that tells the script where the Domino Data resides
DOM_HOME=/local/notesdata

# DOM_USER is the Linux account used to run the ND server
DOM_USER=notes

# DOM_PROG is the location of the Domino executables
DOM_PROG=/opt/lotus/bin

# START: This is executed when you launch the command /etc/init.d/domino start
start() {
echo -n "Starting domino: "

# When the Domino Controller runs, it creates a .jsc_lock file.
# If you've configured Domino to use the Domino Controller and the Server crashes then the ".jsc_lock" file is not deleted.
# When the system reboots and starts Domino, it will fail because of the existing .jsc_lock file.
# Here we want to ensure that we delete the file if it's there before Domino starts
if [ -f $DOM_HOME/.jsc_lock ]; then
rm $DOM_HOME/.jsc_lock
fi
cd $DOM_HOME

# The script must be launched by root.
# Here we become the notes user and we launch the Domino Server with the Domino Controller (-jc) enabled.
# To launch the Server without Domino Controller use the line:
# su $DOM_USER -c "$DOM_PROG/server > /dev/null 2>&1 &"
# Start Domino as a background process
su $DOM_USER -c "$DOM_PROG/server -jc -c > /dev/null 2>&1 &"
return 0
}

# STOP: This is executed when you launch the command /etc/init.d/domino stop
stop() {
echo -n "Stopping domino: "
cd $DOM_HOME
# Here we become the notes user and we quit the Domino Server and the Domino Controller (-jc).
# To stop Domino when the Domino Controller is not enabled use the line:
# su $DOM_USER -c "$DOM_PROG/server -q"
# We pipe the Y into the command so Domino is shut down without needing to type "Y" on the terminal.
echo Y | su $DOM_USER -c "$DOM_PROG/server -jc -q"
return 0
}

case "$1" in
start)
start
;;
stop)
stop
;;
*)
echo "Usage: domino {start|stop}"
exit 1
esac

Step:

Copy abve script to /etc/init.d/domino

Make sure file properties owner must be root.

Check file properties and make sure set mode to 744.

Start or stop domino server can use command line:/etc/init.d/domino start(stop).

If want domino server auto start,You can create script link  to  r0 - r6 in running level.

See below sripts:

 
 
Now, create symlinks to start the Domino server at runlevels 3 and 5 with the
following commands:
ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc3.d/S95domino
ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc5.d/S95domino
And create symlinks to stop the server at runlevels 1 (single-user), 0 (halt) and 6
(reboot) with the following commands:
ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc1.d/K01domino
ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc0.d/K01domino
ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc6.d/K01domino


 

猜你喜欢

转载自blog.csdn.net/navymei10220214/article/details/7751106
今日推荐