Linux 怎麼把自己寫的指令碼新增到服務裡面,即可以使用service命令來呼叫

Dus發表於2015-03-02

chmod 755 filename; mv filename /etc/init.d/; chkconfig --add filename

 

 

 

#!/bin/bash

#chkconfig: 345 85 15 

#description:httpd

 

然後儲存,執行。

chkconfig httpd –add  建立系統服務

現在就可以使用service 來 start or restart

 

1、第一行3個數字引數意義分別為:哪些Linux級別需要啟動httpd(3,4,5);啟動序號(85);關閉序號(15)。

2、儲存後執行:chkconfig --add httpd,成功新增。

3、在rc3.d、rc4.d、rc5.d路徑中會出現S85httpd的連結檔案,其他執行級別路徑中會出現K61httpd的連結檔案。

4、執行chkconfig --list httpd

相關文章