2021-05-12 14:32:11
Ubuntu 15.04 /CentOS 7.0設定自定義開機啟動
Ubuntu 15.x /CentOS 7.x 以後 設定開機啟動,新增自定義系統服務,自定義開機啟動。
Ubuntu 15.04今天 裝LANMPS套件,裝好後開機啟動死活設定不了,檢視了Ubuntu 15.04的新特性才發現:
Systemd——Ubuntu 15.04的服務管理器已經切換到Systemd;
Unity 7.3——Unity桌面版本升級到7.3,包含很多小的優化;
Compiz 0.9.12——視窗管理器升級到0.9.12;
Linux Kernel 3.19
Ubuntu 系統服務指令碼目錄:
/lib/systemd/system/
CentOS 系統服務指令碼目錄:
/usr/lib/systemd/
有系統(system)和使用者(user)之分,
如需要開機沒有登陸情況下就能執行的程式,存在系統服務(system)里,即:
/lib/systemd/system/
反之,使用者登入後才能執行的程式,存在使用者(user)裡
服務以.service結尾。
這邊以nginx開機執行為例
1.建立服務檔案
vim /lib/systemd/system/nginx.service
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
ExecStart=/www/lanmps/init.d/nginx start
ExecReload=/www/lanmps/init.d/nginx restart
ExecStop=/www/lanmps/init.d/nginx stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
[Unit]:服務的說明
Description:描述服務
After:描述服務類別
[Service]服務執行引數的設定
Type=forking是後台執行的形式
ExecStart為服務的具體執行命令
ExecReload為重新啟動命令
ExecStop為停止命令
PrivateTmp=True表示給服務分配獨立的臨時空間
注意:[Service]的啟動、重新啟動、停止命令全部要求使用絕對路徑
[Install]服務安裝的相關設定,可設定為多使用者
2.儲存目錄
以754的許可權儲存在目錄:
/lib/systemd/system
3.設定開機自啟動
systemctl enable nginx.service
4.其他命令
任務 舊指令 新指令
使某服務自動啟動 chkconfig --level 3 httpd on systemctl enable httpd.service
使某服務不自動啟動 chkconfig --level 3 httpd off systemctl disable httpd.service
檢查服務狀態 service httpd status systemctl status httpd.service (服務詳細資訊)
systemctl is-active httpd.service (僅顯示是否 Active)
顯示所有已啟動的服務 chkconfig --list systemctl list-units --type=service
啟動某服務 service httpd start systemctl start httpd.service
停止某服務 service httpd stop systemctl stop httpd.service
重新啟動某服務 service httpd restart systemctl restart httpd.service
啟動nginx服務
systemctl start nginx.service設定開機自啟動
systemctl enable nginx.service停止開機自啟動
systemctl disable nginx.service檢視服務當前狀態
systemctl status nginx.service重新啟動服務
systemctl restart nginx.service檢視所有已啟動的服務
systemctl list-units --type=service
相關文章