systemctl的常用方法
时间: 2023-11-09 17:57:29 浏览: 70
详细讲解systemctl(附常用指令)
5星 · 资源好评率100%
常用的 systemctl 方法有以下几种:
1. 启动一个服务:
`systemctl start service_name`
2. 停止一个服务:
`systemctl stop service_name`
3. 重启一个服务:
`systemctl restart service_name`
4. 显示一个服务的状态:
`systemctl status service_name`
5. 开机自启动一个服务:
`systemctl enable service_name`
6. 禁止一个服务开机自启动:
`systemctl disable service_name`
7. 查看一个服务是否开机自启动:
`systemctl is-enabled service_name`
8. 查看一个服务是否正在运行:
`systemctl is-active service_name`
9. 查看一个服务的日志:
`journalctl -u service_name`
10. 列出所有已经启动的服务:
`systemctl list-units --type=service`
阅读全文