centos7 防火墙(systemctl) 服务指令
哈哈
阅读:664
2021-03-31 18:09:06
评论:0
功能 | 旧指令 | 新指令 |
使某服务自动启动 | chkconfig --level 3 httpd on (注:httpd 代表服务名称) | systemctl enable httpd.service (注:httpd.service 代表服务名称) |
使某服务不自动启动 | chkconfig --level 3 httpd off | systemctl disable httpd.service |
检查服务状态 | service httpd status | systemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active) |
显示所有已启动的服务 | chkconfig --list | systemctl list-units --type=service |
启动某服务 | service httpd start | systemctl start httpd.service |
停止某服务 | service httpd stop | systemctl stop httpd.service |
重启某服务 | service httpd restart | systemctl restart httpd.service |
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。