Linux 下的 systemctl 启动/关闭/启用/禁用服务

一、启动服务

systemctl start <服务名>

二、停止服务

systemctl stop <服务名>

三、重启服务

systemctl restart <服务名>

四、查看服务状态

systemctl status <服务名>

五、设置开机自启动服务

systemctl enable <服务名>

六、禁止开机自启动服务

systemctl disable <服务名>

七、查看是否开机自启动

systemctl is-enabled <服务名>

八、查看已启动服务列表

systemctl list-unit-files|grep enabled

九、查看启动失败服务列表

systemctl --failed

你可能感兴趣的:(linux,服务器,运维)