使用systemctl list-units –type=service –all查看所有服务状态;2. 用systemctl status 服务名检查特定服务;3. 通过start、stop、restart、reload控制服务运行;4. systemctl enable/disable实现开机自启管理,需root权限操作。

在linux系统中,查看和管理系统服务是日常运维的重要技能。现代Linux发行版大多使用systemd作为默认的初始化系统和服务管理器,因此掌握基于systemd的命令能更高效地管理服务。
1. 查看所有系统服务状态
要列出系统中所有已加载的服务及其当前状态,可使用以下命令:
systemctl list-units –type=service –all
该命令会显示正在运行、已停止或启动失败的服务。若只关心已加载的服务(不区分状态),可省略 –all 参数:
systemctl list-units –type=service
2. 查看特定服务的状态
若想检查某个具体服务(如sshd、nginx或docker)是否正常运行,使用:
systemctl status sshd
输出内容包含服务是否激活、启动时间、主进程ID以及最近的日志条目,有助于快速诊断问题。
3. 启动、停止与重启服务
对服务进行基本操作是系统管理中的常见任务:
- 启动服务:systemctl start nginx
- 停止服务:systemctl stop nginx
- 重启服务:systemctl restart nginx
- 重新加载配置(不中断服务):systemctl reload nginx
这些命令适用于大多数守护进程类服务,尤其是Web服务器、数据库等需要热更新配置的场景。
4. 设置服务开机自启
为了让服务在系统启动时自动运行,需启用其开机自启功能:
systemctl enable nginx
取消自启则使用:
systemctl disable nginx
启用后会在 /etc/systemd/system/multi-user.target.wants/ 目录下创建符号链接,表示该服务被纳入启动流程。
基本上就这些常用操作。熟练使用 systemctl 命令可以大幅提升对linux系统的掌控能力,尤其在排查服务异常或部署应用时非常实用。注意操作前建议以root或sudo权限执行,避免权限不足导致失败。


