> CentOS > CentOS入门 >

CentOS开机服务自动启动配置

CentOS开机服务自动启动配置
 
chkconfig --list      #查看开机自启动服务
chkconfig --add sshd  #添加 (如:sshd)
chkconfig --del sshd  #删除 (如:sshd)
 
chkconfig sshd on    #启用 (如:sshd)
chkconfig sshd off   #关闭 (如:sshd)
 
chkconfig --level 35 sshd off #3,5启动级别 启用
chkconfig --level 35 sshd off #3,5启动级别 关闭
 
 3启动级别: 完整多用户模式 (字符界面登录)
 5启动级别: 进入桌面环境(窗口桌面)
(责任编辑:IT)