Linux - 利用systemctl命令管理服务

Posted Anliven - DevOpsNew

tags:

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

systemctl命令是系统服务管理器指令,融合了service和chkconfig的功能,可以查看和设置服务。

这里以docker服务为例。

利用systemctl命令管理

显示服务状态:systemctl status docker.service
列出服务层级和依赖关系:systemctl list-dependencies docker.service

启动服务:systemctl start docker.service
关闭服务:systemctl stop docker.service
重启服务:systemctl restart docker.service

设置服务自启动:systemctl enable docker.service
禁止服务自启动:systemctl disable docker.service

查看服务是否自启动:systemctl is-enabled docker.service
列出系统所有服务的启动情况:systemctl list-units --type=service
列出所有自启动服务:systemctl list-unit-files|grep enabled

对应的旧指令(chkconfig、service)

显示服务状态:service docker status
列出服务层级和依赖关系:systemctl list-dependencies docker.service

启动服务:service docker start
关闭服务:service docker stop
重启服务:service docker restart

设置服务自启动:chkconfig --level 3 docker on
禁止服务自启动:chkconfig --level 3 docker off

查看服务是否自启动:chkconfig --list docker
列出系统所有服务的启动情况:chkconfig --list

以上是关于Linux - 利用systemctl命令管理服务的主要内容,如果未能解决你的问题,请参考以下文章

13个systemd与systemctl命令详解(linux)

linux 的 systemctl指令怎么用

linux常用命令:systemctl 命令

Linux中 service 和 systemctl 命令比较

每天一个Linux命令(55)systemctl命令

Linux中用systemctl命令管理服务