服務管理 systemctl命令

2021-09-20 23:46:34 字數 527 閱讀 1020

啟動乙個服務:systemctl start postfix.service

關閉乙個服務:systemctl stop postfix.service

重啟乙個服務:systemctl restart postfix.service

顯示乙個服務的狀態:systemctl status postfix.service

在開機時啟用乙個服務:systemctl enable postfix.service

在開機時禁用乙個服務:systemctl disable postfix.service

檢視服務是否開機啟動:systemctl is-enabled postfix.service

檢視已啟動的服務列表:systemctl list-unit-files|grep enabled

檢視httpd服務的執行狀態

//loaded行中的enabled表示該服務是開機自動啟動的,disable表示該服務不是開機自動啟動的

服務管理 systemctl命令

任務舊指令 新指令使某服務自動啟動 使某服務不自動啟動 檢查服務狀態 systemctl status httpd.service 服務詳細資訊 systemctl is active httpd.service 僅顯示是否 active 顯示所有已啟動的服務 chkconfig list syst...

服務管理(systemctl)

1.systemd 系統初始化程式,系統開始的第乙個程序,pid為1 2.systemctl 命令 systemctl list units 列出當前系統服務的狀態 systemctl list unit files 列出服務的開機狀態 systemctl status sshd 檢視指定服務的狀態...

Linux服務操作命令 systemctl

systemctl系統服務管理器指令,它實際上將 service 和 chkconfig 這兩個命令組合到一起 任務舊指令 新指令使某服務自動啟動 使某服務不自動啟動 檢查服務狀態 systemctl status httpd.service 服務詳細資訊 systemctl is active h...