Linux下添加自訂指令碼到開機自啟動,標準rpm,舉例:設定Apache自啟動

來源:互聯網
上載者:User

標籤:複製檔案   as3   bin   bar   tde   shell   影響   efault   修改檔案   

寫一個指令碼,名字為: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 onchkconfig --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,給它來個新命名為httpdvim httpd                    //修改檔案,把以下兩行代碼放置頭部 #!/bin/sh下面
#chkconfig:2345 91 25     #description:Httpd server daemon

service httpd start    

service httpd stop  ..測試,如果影響訪問,然後測試chkconfig

chkconfig http on  

chkconfig --list httpd  .....

完畢

Linux下添加自訂指令碼到開機自啟動,標準rpm,舉例:設定Apache自啟動

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.