码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7 systemctl的使用

时间:2016-06-27 19:45:59      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

# 查看正在运行的服务

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的使用

标签:

原文地址:http://www.cnblogs.com/D-Chen/p/5621281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!