4-优化启动过
2016.6.19
优化启动进程:
ntsysv工具
- 提供一个交互式、可视化窗口
- 可以在字符终端运行
- 便于集中管理多个服务
chkconfig工具
- 不提供交互式、可视化窗口
- 管理单个服务效率更高
ntsysv
- 用“空格键”来进行选择
ntsysv工具应用:
- ntsysv
- ntsysv --level 级别列表
chkconfig工具应用
- chkconfig --list
- chkconfig --list 服务名称
- chkconfig --level 级别列表 服务名 on|off
使用chkconfig查看iptables运行级别信息
[root@test1 ~]# chkconfig --list iptables
iptables 0:off 1:off 2:on 3:off 4:on 5:off 6:off
[root@test1 ~]#
使用chkconfig 关闭postfix的35级别
[root@test1 ~]# chkconfig --level 35 postfix off
关闭后查看postfix的状态
[root@test1 ~]# chkconfig --list postfix
postfix 0:off 1:off 2:on 3:off 4:on 5:off 6:off
使用chkconfig开启postfix35级别
[root@test1 ~]# chkconfig --level 35 postfix on
开启后,查看postfix
[root@test1 ~]# chkconfig --list postfix
postfix 0:off 1:off 2:on 3:on 4:on 5:on 6:off