一呕缭、添加開機(jī)自啟服務(wù)
在centos7中添加開機(jī)自啟服務(wù)非常方便堵泽,只需要兩條命令(以Jenkins為例):
systemctl enable jenkins.service #設(shè)置jenkins服務(wù)為自啟動(dòng)服務(wù)
sysstemctl start? jenkins.service #啟動(dòng)jenkins服務(wù)
二、添加開機(jī)自啟腳本
在centos7中增加腳本有兩種常用的方法恢总,以腳本autostart.sh為例:
#!/bin/bash
#description:開機(jī)自啟腳本
/usr/local/tomcat/bin/startup.sh? #啟動(dòng)tomcat
方法一
1迎罗、賦予腳本可執(zhí)行權(quán)限(/opt/script/autostart.sh是你的腳本路徑)
chmod+x /opt/script/autostart.sh
2、打開/etc/rc.d/rc/local文件片仿,在末尾增加如下內(nèi)容
/opt/script/autostart.sh
3佳谦、在centos7中,/etc/rc.d/rc.local的權(quán)限被降低了滋戳,所以需要執(zhí)行如下命令賦予其可執(zhí)行權(quán)限
chmod+x /etc/rc.d/rc.local
方法二
1、將腳本移動(dòng)到/etc/rc.d/init.d目錄下
mv/opt/script/autostart.sh /etc/rc.d/init.d
2啥刻、增加腳本的可執(zhí)行權(quán)限
chmod+x? /etc/rc.d/init.d/autostart.sh
3奸鸯、添加腳本到開機(jī)自動(dòng)啟動(dòng)項(xiàng)目中
cd/etc/rc.d/init.d
chkconfig --add autostart.sh
chkconfig autostart.sh on
三、執(zhí)行命令reboot