2021-05-12 14:32:11
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/autostart.sh
3、新增指令碼到開機自動啟動專案中
cd /etc/rc.d/init.d
chkconfig --add autostart.sh
chkconfig autostart.sh on
以上兩種方法均已在centos7系統上驗證過,如有疑問,歡迎大家評論留言。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-12/138079.htm
相關文章