rhel7 採用全新的 systemd 初始化程序服務,通過systemctl命令來管理服務。
命令作用
systemctl start ***
啟動服務
systemctl restart ***
重啟服務
systemctl stop ***
停止服務
systemctl reloead ***
system status ***
檢視服務狀態
systemctl enable ***
開機自動啟動
systemctl disabled
開機不自動啟動
systemctlis-enable ***
檢視服務是不是開機自啟
systemctl list-unit-files --type=service
檢視各個級別下服務的啟動與禁用情況
systemctl 常用命令
最近開始使用systemd,相比於以往使用service命令,或者直接修改 etc init.d,或者chkconfig這樣多種工具搭配來完成乙個系統服務的配置,部署,systemd的野心極大,它要讓一切都回歸統一,redhat系已經將systemd作為了其預設的系統服務管理工具。這篇文章記錄了一些...
systemctl常用命令
linux中systemctl詳細理解及常用命令 停不掉的服務可用下面方法新增刪除服務 新增 sudo update rc.d 服務名 defaults 刪除 sudo update rc.d f 服務名 remove linux 服務管理兩種方式service和systemctl systemd是...
systemctl 常用命令備忘
列出所有服務 包括啟用的和禁用的 systemctl list unit files type service 檢視某個服務 systemctl list unit files type service grep nginx 啟動 重啟 停止 過載服務以及檢查服務 如 httpd.service 狀...