CentOS 7已经切换到 systemd,系统指令也有所变化。
之前用于启动、重启、停止各种服务的service作为向后兼容的指令还能使用,但是将来可能会消失。同时,chkconfig也改成了systemctl了。
这里列举了一些常用的对应于 service 和 chkconfig 的新的 systemctl指令。
在目前的 CentOS 7(或 RHEL 7)系统中,依然可以使用 service 指令。例如,
[root@localhost ~]# service network restart Restarting network (via systemctl): [ OK ] [root@localhost ~]# service httpd restart Redirecting to /bin/systemctl restart httpd.service [root@localhost ~]# service sshd restart Redirecting to /bin/systemctl restart sshd.service
但是系统会自动重定向该指令到新的指令 /bin/systemctl 来执行,并给出提示。
是时候切换到新的指令格式了,直接使用 systemctl 吧。这个指令的意思就是 system control。下面是一些常用的例子:
启动服务:
systemctl start httpd
停止服务:
systemctl stop httpd
重启服务(先停止,后启动):
systemctl restart httpd
重新加载(使用新的配置文件):
systemctl reload httpd
显示服务状态:
systemctl status httpd
与此同时,之前用于设定系统启动时自动运行某服务的指令 chkconfig 也改了,还是用 systemctl。
chkconfig service on
改成了,
systemctl enable httpd
chkconfig service off
改成了,
systemctl disable httpd
检查服务状态的
chkconfig service
改成了,
systemctl is-enabled httpd
列举出所有服务的指令,
chkconfig –list
改成了,
systemctl list-unit-files --type=service
以前能指定服务 runlevel 的 –levels 也没有了。慢慢适应吧。
本文发表于水景一页。永久链接:<https://cnzhx.net/blog/centos-7-rhel-7-systemd-commands/>。转载请保留此信息及相应链接。
http://blog.webinno.cn/article/view/155本文地址:http://blog.webinno.cn/article/view/155
版权声明:本站博客内所有原创文章及原创翻译转载需经作者同意,否则不得转载!其他文章可自由转载!
转载本站文章需注明本出处,并请注明原出处,尊重作者和版权!
发表于 @ 2017年01月03日 | 浏览2411次| 编辑 |评论(loading... ) |
评论列表