自啟動服務:
可以通過把TongWeb設置為系統服務來實現。
具體實現:
以root用戶進行操作,在/etc/init.d目錄下編寫TongWeb的服務腳本tongweb,用來控制TongWeb的啟動和停止。
腳本內容如下:
#!/bin/bash
#
# tongweb This shell script takes care of starting and stopping
# standalone tongweb.
#
# chkconfig:2345 80 90
# description:auto_run
# that answers incoming ftp service requests.
# processname:tongweb
start(){
su - root -c "cd /opt/TongWeb5.0/bin;nohup ./startserver.sh &"
}
stop(){
su - root -c "cd /opt/TongWeb5.0/bin;nohup ./stopserver.sh &"
}
# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 3
start
;;
*)
exit 1
esac
exit 0
使用chkconfig命令把服務腳本加入到系統服務列表中。
chkconfig --add tongweb
設置系統開機時自動啟動
chkconfig tongweb on
服務器啟動時,TongWeb即可自動啟動。
已經手工配置成功。