systemctl命令
Posted 756623607-zhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了systemctl命令相关的知识,希望对你有一定的参考价值。
一、什么是systemctl命令
systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起
二、常用命令
以nginx为例:
1.启动nginx服务
systemctl start nginx.service
2.设置开机自启动
systemctl enable nginx.service
3.停止开机自启动
systemctl disable nginx.service
4.查看服务当前状态
systemctl status nginx.service
5.重新启动某服务
systemctl restart nginx.service
6.查看所有已启动的服务
systemctl
以上是关于systemctl命令的主要内容,如果未能解决你的问题,请参考以下文章