系统运维
这篇文章主要介绍Linux中chkconfig有什么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
在当前大多数Linux发行版中可能都会包含这两个命令,chkconfig用法为我们控制Linux中的服务(守护进程)提供了很大的方便,先看看这两条命令的帮助:
[root@localhost ~]# service –help
Usage: service < option > | –status-all | [ service_name [ command | –full-restart ] ]
[root@localhost ~]# chkconfig –help
chkconfig 版本 1.3.29 – 版权 (C) 1997-2000 Red Hat, Inc.
在 GNU 公共许可的条件下,本软件可以被自由发行。
chkconfig用法: chkconfig –list [name]
chkconfig –add
chkconfig –del
chkconfig [–level ] <on|off|reset|resetpriorities>
在我的系统上sshd默认不在系统服务列表里边,下面以sshd命令说明他们的用法:
输入service sshd会列出可用的一些操作:
[root@localhost ~]# service sshd
用法:/etc/init.d/sshd {start|stop|restart|reload|condrestart|status}
启动sshd服务:
service sshd start
停止sshd服务:
service sshd stop
将sshd添加到服务列表里边:
chkconfig –add sshd
使sshd可以开机自动运行:
chkconfig sshd on
还可以通过–level具体指定sshd的运行级别。
以上是“Linux中chkconfig有什么用”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!