1. 程式人生 > >CentOS7 rc.local開機開法啟動

CentOS7 rc.local開機開法啟動

port ews AD add cat lines tle bash 命令

CentOS 7添加開機啟動服務/腳本

一、添加開機自啟服務

在CentOS 7中添加開機自啟服務非常方便,只需要兩條命令(以Jenkins為例):
systemctl enable jenkins.service #設置jenkins服務為自啟動服務
sysstemctl start jenkins.service #啟動jenkins服務

二、添加開機自啟腳本

在centos7中增加腳本有兩種常用的方法,以腳本autostart.sh為例:
#!/bin/bash
#description:開機自啟腳本
/usr/local/tomcat/bin/startup.sh #啟動tomcat

方法一

1、賦予腳本可執行權限(/opt/script/autostart.sh是你的腳本路徑)
chmod +x /opt/script/autostart.sh

2、打開/etc/rc.d/rc/local文件,在末尾增加如下內容
/opt/script/autostart.sh

3、在centos7中,/etc/rc.d/rc.local的權限被降低了,所以需要執行如下命令賦予其可執行權限
chmod +x /etc/rc.d/rc.local

方法一未成功。

方法二

1、將腳本移動到/etc/rc.d/init.d目錄下
mv /opt/script/autostart.sh /etc/rc.d/init.d

2、增加腳本的可執行權限
chmod +x /etc/rc.d/init.d/my.sh

3、添加腳本到開機自動啟動項目中
cd /etc/rc.d/init.d
chkconfig --add my.sh
chkconfig my.sh on

service XXX does not support chkconfig

出現

service my does not support chkconfig
添加下面兩句到 #!/bin/bash 之後。
# chkconfig: 2345 10 90 
# description: my ....

其中2345是默認啟動級別,級別有0-6共7個級別。

  等級0表示:表示關機   

  等級1表示:單用戶模式   

  等級2表示:無網絡連接的多用戶命令行模式   

  等級3表示:有網絡連接的多用戶命令行模式   

  等級4表示:不可用   

  等級5表示:帶圖形界面的多用戶模式   

  等級6表示:重新啟動

10是啟動優先級,90是停止優先級,優先級範圍是0-100,數字越大,優先級越低。

CentOS7 rc.local開機開法啟動