「 程序 • 技术 」🛸📓Linux 笔记⭐Tips linux 2023-08-18 Download PDF systemctl 常用命令 systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 12345678910111213systemctl 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)文件 拓展阅读: Linux新手入门系列:systemctl服务service文件配置详解 - 知乎 (zhihu.com) linux文件目录:systemd的service文件说明_sshd.service在什么位置-CSDN博客 Linux 中如何编写 .service文件 (systemd.service 中文手册)_linux service编写-CSDN博客 systemd.service 中文手册 [金步国] (jinbuguo.com) systemctl 中文手册 [金步国] (jinbuguo.com)