码迷,mamicode.com
首页 > 系统相关 > 详细

Linux环境下Domino多帐户自动启动

时间:2016-09-24 00:33:15      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:

#! /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

?? ?

使用注意:

- 将文档复制到 /etc/init.d/domino

- 检查文档所有者(owner)必须为root

- 检查文档属性是否正确,可将mode设置为 744

- 启动/停止Domino服务器可用命令行: /etc/init.d/domino start(stop)

- 如希望自动运行Domino,可在r0-r6运行level中创建脚本link,如下所示:

? ?

Now, create symlinks to start the Domino server at runlevels 3 and 5 with thefollowing 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?

Linux环境下Domino多帐户自动启动

标签:

原文地址:http://www.cnblogs.com/hijkw/p/5902037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!