我是靠谱客的博主 炙热钻石,最近开发中收集的这篇文章主要介绍centos7中systemctl查看服务,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

任务旧指令新指令
使某服务自动启动chkconfig --level 3 httpd onsystemctl enable httpd.service
使某服务不自动启动chkconfig --level 3 httpd offsystemctl disable httpd.service
检查服务状态service httpd statussystemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active)
显示所有已启动的服务chkconfig --list
systemctl list-units --type=service
启动某服务service httpd startsystemctl start httpd.service
停止某服务service httpd stopsystemctl stop httpd.service
重启某服务service httpd restartsystemctl restart httpd.service




转载于:https://blog.51cto.com/jschu/1687562

最后

以上就是炙热钻石为你收集整理的centos7中systemctl查看服务的全部内容,希望文章能够帮你解决centos7中systemctl查看服务所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部