linux7開機自啟動東方通tongweb


自啟動服務:

  可以通過把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即可自動啟動。

已經手工配置成功。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM