Systemd是一個系統和服務管理器,可以用來啟動、停止和管理各種系統服務和進程。在Ubuntu上,可以使用systemctl命令來管理Systemd服務和進程。
以下是一些常用的Systemd命令:
啟動一個服務:sudo systemctl start <service_name> 例如:sudo systemctl start apache2
停止一個服務:sudo systemctl stop <service_name> 例如:sudo systemctl stop apache2
重啟一個服務:sudo systemctl restart <service_name> 例如:sudo systemctl restart apache2
查看一個服務的狀態:sudo systemctl status <service_name> 例如:sudo systemctl status apache2
設置一個服務開機啟動:sudo systemctl enable <service_name> 例如:sudo systemctl enable apache2
禁止一個服務開機啟動:sudo systemctl disable <service_name> 例如:sudo systemctl disable apache2
查看所有正在運行的服務:sudo systemctl list-units --type=service 例如:sudo systemctl list-units --type=service
通過使用以上命令,你可以方便地管理Ubuntu上的各種服務和進程。Systemd還提供了更多高級功能,比如自定義服務配置文件等,可以根據需要進一步了解和使用。