CentOS 7 上systemctl 的用法

首页 → Linux教程

背景:

阅读新闻

CentOS 7 上systemctl 的用法

[日期:2014-11-10]来源:Linux社区作者:Linux[字体:]

我们对service和chkconfig两个命令都不陌生,systemctl 是管制服务的主要工具, 它整合了chkconfig 与 service功能于一体。

systemctl is-enabled iptables.servicesystemctl is-enabled servicename.service #查询服务是否开机启动systemctl enable *.service #开机运行服务systemctl disable *.service #取消开机运行systemctl start *.service #启动服务systemctl stop *.service #停止服务systemctl restart *.service #重启服务systemctl reload *.service #重新加载服务配置文件systemctl status *.service #查询服务运行状态systemctl –failed #显示启动失败的服务

注:*代表某个服务的名字,如http的服务名为httpd

例如在CentOS 7 上安装http

[root@CentOS7 ~]# yum -y install httpd启动服务(等同于service httpd start)systemctl start httpd.service停止服务(等同于service httpd stop)systemctl stop httpd.service重启服务(等同于service httpd restart)systemctl restart httpd.service查看服务是否运行(等同于service httpd status)systemctl status httpd.service开机自启动服务(等同于chkconfig httpd on)systemctl enable httpd.service开机时禁用服务(等同于chkconfig httpd on)systemctl disable httpd.service查看服务是否开机启动 (等同于chkconfig –list)

本文永久更新链接地址:

0

systemd详解

CentOS 7 主机名的修改

相关资讯 CentOS 7 systemctl

图片资讯

本文评论  查看全部评论 (0)

评论声明

最新资讯

本周热门

Linux公社简介 – 广告服务 – 网站地图 – 帮助信息 – 联系我们本站(LinuxIDC)所刊载文章不代表同意其说法或描述,仅为提供更多信息,,也不构成任何建议。Copyright © 2006-2014 Linux公社 All rights reserved 浙ICP备06018118号

可你仍然感谢天地和人世所带来的这些变化和发生。

CentOS 7 上systemctl 的用法

相关文章:

你感兴趣的文章:

标签云: