chkconfig 配置 CentOS 6 服务自启动

服务自启动情况查看

1
chkconfig --list

某个服务自启动情况

1
2
# 查看opensssh服务器的自启动配置
chkconfig --list sshd

配置自启动

1
2
# openssh服务自启动
chkconfig sshd on