centos6.x开机自启动服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.x开机自启动服务相关的知识,希望对你有一定的参考价值。

##关闭所有服务
for sun in chkconfig --list|grep 3:on|awk ‘{print $1}‘;do chkconfig --level 3 $sun off;done

##启动必要服务(可以根据实际需要修改)
for sun in YDService atd crond rsyslog sshd network udev-post sysstat vm-agent;do chkconfig --level 3 $sun on;done

以上是关于centos6.x开机自启动服务的主要内容,如果未能解决你的问题,请参考以下文章

centos7.x开机启动流程centos6.x开机启动流程

centos6.x开机卡死

CentOS6.x生产环境下一键安装mono+jexus的脚本,自启动,带服务,版本号自控

树莓派进阶之路 (033) - 开机启动自定义脚本

开机自启脚本

Linux服务开机自启动使用示例