栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 系统运维 > 运维 > Linux > Linux命令手册 > 系统管理

systemctl命令 – 管理系统服务

系统管理 更新时间: 发布时间: IT归档 最新发布 模块sitemap

systemctl命令 – 管理系统服务

Centos7之后从init完全换成了systemd的启动方式,systemd 启动服务的机制主要是通过 systemctl 的这个系统服务管理指令来处理。systemctl在用法上也囊括 service / chkconfig / setup / init 的大部分功能。

语法格式:systemctl [参数] [服务]

常用参数:

-start 启动服务
-stop 停止服务
-restart 重启服务
-enable使某服务开机自启
-disable关闭某服务开机自启
-status查看服务状态
-list -units --type=service 列举所有已启动服务

参考实例

启动httpd服务:

[root@linuxcool ~]# systemctl start httpd.service 

停止httpd服务:

[root@linuxcool ~]# systemctl stop httpd.service 

重启httpd服务:

[root@linuxcool ~]# systemctl restart httpd.service 

查看httpd服务状态:

[root@linuxcool ~]# systemctl status httpd.service  

使httpd开机自启:

[root@linuxcool ~]# systemctl enable httpd.service  

取消httpd开机自启:

[root@linuxcool ~]# systemctl disable httpd.service   

列举所有已启动服务(unit单元) :

[root@linuxcool ~]# systemctl list-units --type=service
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/808.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号