码迷,mamicode.com
首页 > 系统相关 > 详细

linux开机启动服务设置

时间:2016-10-26 17:02:16      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:开机启动服务设置

技术分享技术分享

[root@try ~]# chkconfig --list|grep "3:on"

auditd          0:off   1:off   2:on    3:on    4:on    5:on    6:off

crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off

ip6tables       0:off   1:off   2:on    3:on    4:on    5:on    6:off

iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off

kdump           0:off   1:off   2:off   3:on    4:on    5:on    6:off

mdmonitor       0:off   1:off   2:on    3:on    4:on    5:on    6:off

netfs           0:off   1:off   2:off   3:on    4:on    5:on    6:off

network         0:off   1:off   2:on    3:on    4:on    5:on    6:off

postfix         0:off   1:off   2:on    3:on    4:on    5:on    6:off

rsyslog         0:off   1:off   2:on    3:on    4:on    5:on    6:off

sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

sysstat         0:off   1:on    2:on    3:on    4:on    5:on    6:off

udev-post       0:off   1:on    2:on    3:on    4:on    5:on    6:off

[root@try ~]# for oldboy in `chkconfig --list|grep "3:on"|awk ‘{print $1}‘`;do chkconfig $oldboy off;done

[root@try ~]# chkconfig --list|grep "3:on"

[root@try ~]# for oldboy in crond network sshd rsyslog;do chkconfig $oldboy on;done

[root@try ~]# chkconfig --list|grep "3:on"

crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off

network         0:off   1:off   2:on    3:on    4:on    5:on    6:off

rsyslog         0:off   1:off   2:on    3:on    4:on    5:on    6:off

sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

[root@try ~]# 


linux开机启动服务设置

标签:开机启动服务设置

原文地址:http://12133924.blog.51cto.com/12123924/1865860

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!