Linux下新增自定義指令碼到開機自啟動,標準rpm,舉例:設定Apache自啟動

OldBoy~發表於2017-05-17

寫一個指令碼,名字為:autostart.sh,放在/etc/init.d/目錄下,賦予許可權chmod +x /etc/init.d/autostart.sh

程式碼如下

#!/bin/sh
#chkconfig:2345 90 20     
#description:Autostart server daemon
#shell指令碼主體自定義
#....... start    ....
#....... stop     ......
#....... restart    ....

這樣的話,service命令就可以使用了,看看chkconfg可不可使用

進入/etc/rc.d/init.d/
chkconfig --list autostart     //如果出現service  autostart supports.... ---add autostart')

執行

chkconfig autostart on
chkconfig --list autostart

返回

autostart      0:off    1:off   2:on   3:on  4:on    5:on    6:off

也可以關閉

chkconfig autostart off
不同的執行級定義如下:
# 0 - 停機(千萬不能把initdefault 設定為0 )
# 1 - 單使用者模式       # s   init s = init 1
# 2 - 多使用者,沒有 NFS
# 3 - 完全多使用者模式(標準的執行級)
# 4 - 沒有用到
# 5 - X11 多使用者圖形模式(xwindow)
# 6 - 重新啟動 (千萬不要把initdefault 設定為6 )

然後 init.6   重啟測試

修改Apache來實現同理自啟動

cd /etc/init.d                  //進入此目錄
cp /usr/local/apache/bin/apachectl ./       //複製檔案到當前目錄
mv apachectl httpd               //找到apachectl,給它來個新命名為httpd
vim httpd                    //修改檔案,把以下兩行程式碼放置頭部 #!/bin/sh下面
#chkconfig:2345 91 25     
#description:Httpd server daemon
service httpd start    
service httpd stop  ..測試,如果影響訪問,然後測試chkconfig
chkconfig http on  
chkconfig --list httpd  .....

完畢

相關文章