在centos7中添加開機自啓服務很是方便,只須要兩條命令(以Jenkins爲例):centos
systemctl enable jenkins.service #設置jenkins服務爲自啓動服務 sysstemctl start jenkins.service #啓動jenkins服務
在centos7中增長腳本有兩種經常使用的方法,以腳本autostart.sh爲例:tomcat
#!/bin/bash #description:開機自啓腳本 /usr/local/tomcat/bin/startup.sh #啓動tomcat
一、賦予腳本可執行權限(/opt/script/autostart.sh是你的腳本路徑)bash
chmod +x /opt/script/autostart.sh
二、打開/etc/rc.d/rc/local文件,在末尾增長以下內容centos7
/opt/script/autostart.sh
三、在centos7中,/etc/rc.d/rc.local的權限被下降了,因此須要執行以下命令賦予其可執行權限spa
chmod +x /etc/rc.d/rc.local
一、將腳本移動到/etc/rc.d/init.d目錄下code
mv /opt/script/autostart.sh /etc/rc.d/init.d
二、增長腳本的可執行權限ip
chmod +x /etc/rc.d/init.d/autostart.sh
三、添加腳本到開機自動啓動項目中jenkins
cd /etc/rc.d/init.d chkconfig --add autostart.sh chkconfig autostart.sh on