[root@hexingxing ~]# chkconfig
// 列出所有运行级别的服务开机运行状态
[root@hexingxing ~]# chkconfig --list nginx
nginx 0: 关闭 1: 关闭 2: 启用 3: 启用 4: 启用 5: 启用 6: 关闭
// 列出 Nginx 服务所有运行级别的开机运行状态
[root@hexingxing ~]# chkconfig --level 245 nginx off
[root@hexingxing ~]# chkconfig --list nginx
nginx 0: 关闭 1: 关闭 2: 关闭 3: 启用 4: 关闭 5: 关闭 6: 关闭
// 设置 Nginx 服务的不同运行级别开机状态,设置级别 2、4、5 不开机运行
[root@hexingxing ~]# chkconfig --level 5 nginx on
[root@hexingxing ~]# chkconfig --list nginx
nginx 0: 关闭 1: 关闭 2: 关闭 3: 启用 4: 关闭 5: 启用 6: 关闭
// 设置 Nginx 服务的不同运行级别开机状态,设置级别 5 开机运行
[root@hexingxing ~]# chkconfig nginx on
[root@hexingxing ~]# chkconfig --list nginx
nginx 0: 关闭 1: 关闭 2: 启用 3: 启用 4: 启用 5: 启用 6: 关闭
// 设置 Nginx 服务开机运行,on 指通用情况下全开模式,指 2、3、4、5 运行级别
[root@hexingxing ~]# chkconfig nginx off
[root@hexingxing ~]# chkconfig --list nginx
nginx 0: 关闭 1: 关闭 2: 关闭 3: 关闭 4: 关闭 5: 关闭 6: 关闭
// 设置 Nginx 服务开机不运行
[root@hexingxing ~]# chkconfig --add httpd
// 添加一个由 chkconfig 管理的 Apache 服务
[root@hexingxing ~]# chkconfig --del httpd
// 删除由 chkconfig 管理的 Apache 服务
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论