centos7下新增開機啟動
阿新 • • 發佈:2018-11-12
在/etc/systemd/system下建立weblogic .Service
touch weblogic.Service
新增啟動許可權
chmod +x weblogic.Service
編輯weblogic.Service
vim weblogic.Service
[Unit]
Description=weblogic Service #服務的說明
After=syslog.target ntpdate.service sntp.service #啟動順序,表示這些服務啟動後啟動該服務
[Service] #此塊對伺服器進行設定
Type=simple #服務型別
User=weblogic #啟動的使用者
Group=weblogic #啟動的組
ExecStart=/etc/init.d/weblogic start #啟動時呼叫的指令碼和引數
ExecStop=/etc/init.d/weblogic stop #停止時呼叫的指令碼和引數
ExecReload=/etc/init.d/weblogic restart #重啟時呼叫的指令碼和引數
[Install]
WantedBy=multi-user.target #啟動的級別,相當域centos6中的init 3
更多引數,可以參考一下連線
http://www.ruanyifeng.com/blog/2016/03/systemd-tutorial-commands.html