systemctl 常用命令


systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

1
2
3
4
5
6
7
8
9
10
11
12
13
systemctl start [SERVICE]					# 启动一个服务
systemctl stop [SERVICE] # 关闭一个服务
systemctl restart [SERVICE] # 重启一个服务
systemctl status [SERVICE] # 显示一个服务的状态

systemctl enable [SERVICE] # 在开机时启用一个服务
systemctl disable [SERVICE] # 在开机时禁用一个服务
systemctl is-enabled [SERVICE] # 查看服务是否开机启动

systemctl list-unit-files | grep enabled # 查看已启动的服务列表
systemctl --failed # 查看启动失败的服务列表

systemctl daemon-reload # 重载daemon(.service)文件

拓展阅读: