0%

systemctl命令

systemctl命令主要有两大功能

控制systemd系统
管理系统上运行的服务

systemctl 常用命令

启动服务

1
systemctl start 服务名

停止服务

1
systemctl stop 服务名

重启服务

1
systemctl restart 服务名

查看服务是否已启动

1
systemctl is-active 服务名

查看服务的状态

1
systemctl status 服务名

启用开机自启动服务

1
systemctl enable 服务名

停用开机自启动服务

1
systemctl disable 服务名

查看服务是否为开机自启动

1
systemctl is-enabled 服务名

只重启正在运行中的服务

1
systemctl try-restart 服务名

显示所有的服务状态—空格翻页 q推出

1
systemctl list-units --type service --all

查看启动成功的服务列表

1
systemctl list-unit-files|grep enabled

查看启动失败的服务列表

1
systemctl --failed

查看所有服务的状态—空格翻页 q推出

1
systemctl list-unit-files --type service
1