systemctl记录

Posted

tags:

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

service foo startsystemctl start foo.service用来启动一个服务 (并不会重启现有的)
service foo stopsystemctl stop foo.service用来停止一个服务 (并不会重启现有的)。
service foo restartsystemctl restart foo.service用来停止并启动一个服务。
service foo reloadsystemctl reload foo.service当支持时,重新装载配置文件而不中断等待操作。
service foo condrestartsystemctl condrestart foo.service如果服务正在运行那么重启它。
service foo statussystemctl status foo.service汇报服务是否正在运行。
ls /etc/rc.d/init.d/systemctl list-unit-files --type=service用来列出可以启动或停止的服务列表。
chkconfig foo onsystemctl enable foo.service在下次启动时或满足其他触发条件时设置服务为启用
chkconfig foo offsystemctl disable foo.service在下次启动时或满足其他触发条件时设置服务为禁用
chkconfig foosystemctl is-enabled foo.service用来检查一个服务在当前环境下被配置为启用还是禁用。
chkconfig –listsystemctl list-unit-files --type=service输出在各个运行级别下服务的启用和禁用情况
chkconfig foo –listls /etc/systemd/system/*.wants/foo.service用来列出该服务在哪些运行级别下启用和禁用。
chkconfig foo –addsystemctl daemon-reload当您创建新服务文件或者变更设置时使用。
telinit 3systemctl isolate multi-user.target (OR systemctl isolate runlevel3.target OR telinit 3)改变至多用户运行级别。


本文出自 “学习日记” 博客,请务必保留此出处http://yinming.blog.51cto.com/10014834/1917291

以上是关于systemctl记录的主要内容,如果未能解决你的问题,请参考以下文章

centos7 systemctl status servicename执行慢的问题

systemctl怎么启动udev

systemctl启动服务句柄数不生效

docker17.09.1-ce 执行systemctl resart docker重启失败的问题

如何编写systemctl自启动服务 service文件

阿里云云服务器 centos 7.4 安装mysql 过程记录