溫馨提示×

Debian中的Systemd服務管理工具怎么使用

小億
150
2024-03-20 15:41:44
欄目: 智能運維

在Debian中,Systemd服務管理工具是主要用來管理和控制系統(tǒng)服務的工具。以下是一些常用的Systemd服務管理命令和示例:

  1. 查看所有正在運行的服務:
systemctl list-units --type=service
  1. 啟動一個服務:
sudo systemctl start [service_name]
  1. 停止一個服務:
sudo systemctl stop [service_name]
  1. 重啟一個服務:
sudo systemctl restart [service_name]
  1. 查看一個服務的狀態(tài):
sudo systemctl status [service_name]
  1. 啟用一個服務(系統(tǒng)啟動時自動啟動):
sudo systemctl enable [service_name]
  1. 禁用一個服務(系統(tǒng)啟動時不自動啟動):
sudo systemctl disable [service_name]

請注意,上述命令中的[service_name]應替換為實際的服務名稱??梢酝ㄟ^systemctl list-units --type=service命令查看所有服務的名稱。希望這些信息對您有所幫助。

0