CentOS7 systemctl的使用
Posted D蓝叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 systemctl的使用相关的知识,希望对你有一定的参考价值。
# 查看正在运行的服务
systemctl
# 查看某个服务的状态
systemctl status httpd.service
# 启动服务
systemctl start foo.service
如:systemctl start httpd.service
# 停止服务
systemctl stop foo.service
如:systemctl stop httpd.service
# 重启服务
systemctl restart foo.service
如:systemctl restart httpd.service
# 重新加载配置文件
systemctl reload foo.service
如:systemctl reload httpd.service
# 开机时启动一个服务
systemctl enable foo.service
如:systemctl enable httpd.service
# 开机时关闭一个服务
systemctl disable foo.service
如:systemctl disable httpd.service
# 查看服务是否开机启动
systemctl is-enabled foo.service
如:systemctl is-enabled httpd.service
以上是关于CentOS7 systemctl的使用的主要内容,如果未能解决你的问题,请参考以下文章
CentOS7 下面使用systemctl 来管理tomcat服务
Docker下构建centos7容器无法使用systemctl命令的解决办法