Ubuntu-18 開機自動啟動自定義程序
ubuntu18.04不再使用 inited 管理系統,改用 systemd。但是個人認為開機啟動的rc.local更加好用,所以可以自己配置rc.local
1.實現原理
systemd 默認會讀取 /etc/systemd/system 下的配置文件,該目錄下的文件會鏈接 /lib/systemd/system/ 下的文件。一般系統安裝完 /lib/systemd/system/ 下會有 rc-local.service 文件,即我們需要的配置文件。
2.將 /lib/systemd/system/rc-local.service 鏈接到 /etc/systemd/system/ 目錄下面來
ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service
修改文件內容
vim /etc/systemd/system/rc-local.service
#在文件末尾增加
[Install]
WantedBy=multi-user.target
Alias=rc-local.service
3.創建/etc/rc.local文件
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/bin/sh /vbaas_agent/start.sh > /vbaas_agent/agent_start.log 2>&1
/bin/sh /vbaas_agent/configtxlator-start.sh >> /vbaas_agent/agent_start.log 2>&1
exit 0
4.給 rc.local 加上權限,啟用服務
chmod 755 /etc/rc.local
systemctl enable rc-local
5.啟動服務並檢查狀態
systemctl start rc-local.service
systemctl status rc-local.service