在 /etc/init.d 目錄下面編寫指令碼:
服務名字:
#!/bin/sh#chkconfig:
2345
8090
#description:auto_run
#start
start()
#stop
stop() '`
echo
"服務名字 stop...";
}case"$1
"instart)
start
;;stop)
stop
;;reload|restart)
stop
start
;;*)
echo $"
usage: $0
"exit
1esac
index.php 為後台執行的檔名
寫完指令碼之後,如果要開機自動啟動
chkconfig --add 服務名字
chkconfig 服務名字 on/off 重啟後永久有效
寫到這裡 , 就完成了
可以直接使用 service 服務名字 start|stop|restart 來完成操作了
linux註冊服務
建立 myservice 檔案,並編輯 mkdir myservice vim myservice1 在檔案的開頭必須加上 chkconfig 85 15 description 描述 如果不加上面的注釋,那麼執行chkconfig add myservice 時會報錯service yz does...
Linux 系統服務註冊
linux 註冊系統服務 1 chkconfig 先在 etc init.d資料夾下新增服務的啟動 停止指令碼 然後執行命令 chkconfig list 可以看到當前系統的所有服務並且看到服務的狀態,例如 syslog 0 off 1 off 2 on 3 on 4 off 5 on 6 off ...
Linux 註冊系統服務
像mysql,ssh這些我們都可以用service mysqld start類似的命令來啟動 關閉等,那我們如何把我們自己的程式也按照如此的方式來進行管理呢?1.進入 etc init.d,建立檔案 d,其內容形如以下 shell bin bash chkconfig 90 10 descripti...