CentOS(RedHat红帽系统) 开启/关闭服务,启用、禁用开机自启动,systemctl 工具使用

systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

以firewalld.service为例。.service可以省略

启动服务:systemctl start firewalld.service
停止服务:systemctl stop firewalld.service
重启服务:systemctl restart firewalld.service
服务状态:systemctl status firewalld.service


启用开机启动服务:systemctl enable firewalld.service
禁用开机启动服务:systemctl disable firewalld.service
查看是否开机启动:systemctl is-enabled firewalld.service


查看开机启动的服务列表:systemctl list-unit-files | grep enabled
查看启动失败的服务列表:systemctl --failed

posted on 2019-04-29 15:35  小石头小祖宗  阅读(61)  评论(0编辑  收藏  举报  来源

导航