#systemctl is-enabled servicename.service #查询服务是否开机启动 #systemctl enable xxx.service #开机运行服务 #systemctl disable xxx.service #取消开机运行 #systemctl start xxx.service #启动服务 #systemctl stop xxx.service #停止服务 #systemctl restart xxx.service #重启服务 #systemctl reload xxx.service #重新加载服务配置文件 #systemctl status xxx.service #查询服务运行状态 #systemctl --failed #显示启动失败的服务
注:xxx代表某个服务的名字,如mysql的服务名为mysqld
本文详细介绍了systemctl命令的使用方法,包括查询服务是否开机启动、设置服务开机启动或关闭、启动、停止、重启及重新加载服务等操作。此外还提供了查询服务运行状态及显示启动失败的服务的方法。
2247

被折叠的 条评论
为什么被折叠?



