1. 程式人生 > >centos7如何新增開機啟動服務/指令碼

centos7如何新增開機啟動服務/指令碼

一、新增開機自啟服務

在centos7中新增開機自啟服務非常方便,只需要兩條命令(以Jenkins為例):

systemctlenablejenkins.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