系统服务管理 ntsysv chkconfig

安装ntsysv服务管理工具

[root@localhost ~]# yum install -y ntsysv

ntsysv服务管理工具界面

wKiom1Z3sR-zqLGVAACxAH1S3l8554.png


chkconfig 系统服务管理工具

查看系统服务

[root@localhost ~]# chkconfig --list


查看指定系统服务状态

[root@localhost ~]# chkconfig --list iptables


设置指定服务在指定运行级别(这里为3,4,5)为开机启动或者开机不启动

[root@localhost ~]# chkconfig --level 345 iptables off|on


系统服务列表目录,系统服务执行文件权限必须为755

[root@localhost ~]# /etc/init.d/


增加自定义系统服务

[root@localhost ~]# chkconfig --add myservices1


删除自定义系统服务

[root@localhost ~]# chkconfig --del myservices1



你可能感兴趣的:(chkconfig,ntsysv,系统服务管理)