centos7 systemctl命令

Posted 人艰不拆_zmc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 systemctl命令相关的知识,希望对你有一定的参考价值。

systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。

技术分享技术分享

实例:

启动nfs服务:systemctl start nfs-server.service

设置开机自启动:systemctl enable nfs-server.service

停止开机自启动:systemctl disable nfs-server.service
查看服务当前状态:systemctl status nfs-server.service

重新启动某服务:systemctl restart nfs-server.service

查看所有已启动的服务:systemctl list -units –type=service

开启防火墙22端口:iptables -I INPUT -p tcp –dport 22 -j accept


以上是关于centos7 systemctl命令的主要内容,如果未能解决你的问题,请参考以下文章

RHEL7/CentOS7服务控制之systemctl命令 򌔛

RHEL7/CentOS7服务控制之systemctl命令 񸪚

RHEL7/CentOS7服务控制之systemctl命令 񬬻

centos7 中 systemd systemctl管理服务的命令

CentOS7 tomcat systemctl脚本

CentOS7 systemctl添加自定义系统服务