首页 > 技术文章 > centos7 systemctl命令

zhangmingcheng 2016-11-10 11:30 原文

systemctl命令是RHEL 7 的服务管理工具中主要的工具,它融合service和chkconfig的功能于一体。可以使用它永久性或只在当前会话中启用/禁用服务。

一、systemd

系统初始化程序,系统开始的第一个进程,pid为1

 

二、systemctl命令

systemctl list-units            ##列出当前系统服务的状态

systemctl list-unit-files       ##列出服务的开机状态

systemctl status sshd           ##查看指定服务的状态

systemctl stop sshd             ##关闭指定服务

systemctl start sshd            ##开启指定服务

systemctl restart sshd          ##从新启动服务

systemctl enable sshd           ##设定指定服务开机开启

systemctl disable sshd          ##设定指定服务开机关闭

systemctl reload sshd           ##使指定服务从新加载配置

systemctl list-dependencies sshd    ##查看指定服务的倚赖关系

systemctl mask  sshd            ##冻结指定服务

systemctl unmask sshd           ##启用服务

systemctl set-default multi-user.target ##开机不开启图形

systemctl set-default graphical.target  ##开机启动图形

setterm                 ##文本界面设定color

三、服务状态

systemctl   status     服务名称

 

loaded             ##系统服务已经初始化完成,加载过配置

active(running)       ##正有一个或多个程序正在系统中执行, vsftpd就是这种模式

atcive(exited)        ##僅執行一次就正常結束的服務, 目前並沒有任何程序在系統中執行

atcive(waiting)       ##正在執行當中,不過還再等待其他的事件才能继续处理

inactive            ##服务关闭

enbaled           ##服务开机启动

disabled          ##服务开机不自启

static                ##服务开机启动项不可被管理

failed                ##系统配置错误

实例:

启动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

查看服务是否开机启动:systemctl is-enabled nginx.service

查看已启动的服务列表:systemctl list-unit-files|grep enabled

查看启动失败的服务列表:systemctl --failed

推荐阅读