centos 7 中使用systemctl工具来管理服务程序,包括了service和chkconfig
启动一个服务: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;echo $?
查看已启动的服务列表:systemctl list-unit-files|grep enabled
学习之余。休闲娱乐一下,爆笑一课吧
本文介绍了如何在CentOS7中使用systemctl工具管理服务程序,包括启动、停止、重启服务等操作,同时还提供了查看服务状态及开机启动设置的方法。
1348

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



