chkconfig开机启动

简介:

[root@localhost ~]# who -r   查看当前系统运行在哪个级别

         run-level 5  2017-02-17 10:00                   last=S

[root@localhost ~]# chkconfig --level 345 zabbix_agentd on   使得zabbix_agentd在345级别时启动状态

[root@localhost ~]# chkconfig --list

NetworkManager  0:off 1:off 2:off 3:off 4:off 5:off 6:off

acpid           0:off 1:off 2:on 3:on 4:on 5:on 6:off

anacron         0:off 1:off 2:on 3:on 4:on 5:on 6:off

atd             0:off 1:off 2:off 3:on 4:on 5:on 6:off

auditd          0:off 1:off 2:on 3:on 4:on 5:on 6:off

autofs          0:off 1:off 2:off 3:on 4:on 5:on 6:off

avahi-daemon    0:off 1:off 2:off 3:on 4:on 5:on 6:off


本文转自aaa超超aaa 51CTO博客,原文链接:http://blog.51cto.com/10983441/1898698

相关文章
|
3月前
|
网络协议 数据可视化 网络安全
firewalld 详细介绍配置(二)
【8月更文挑战第10天】配置`firewalld`涉及安装、启动与管理防火墙规则。首先通过`yum install firewalld`安装,然后使用`systemctl`命令进行启动、停止及禁用服务。`firewall-cmd`命令用于管理防火墙状态、查看版本与帮助信息、设置默认区域及接口所属区域。可通过添加或移除端口和服务来控制网络流量,并利用丰富规则进行更细粒度的控制。此外,`firewalld`支持动态规则更新,无需重启服务即可生效。可以通过配置文件持久化规则设置,适用于长期维护场景。
52 3
|
5月前
|
Unix Linux
# chkconfig: 2345 40 60 是什么
【6月更文挑战第10天】# chkconfig: 2345 40 60 是什么
31 5
|
Linux
一文让你掌握Chkconfig命令的使用
一文让你掌握Chkconfig命令的使用
开机启动
开机启动
149 0
|
网络协议 网络安全
firewalld的配置和使用
1、firewalld的基本使用 启动: systemctl start firewalld查看状态: systemctl status firewalld 停止: systemctl disable firewalld禁用: systemctl stop firewalld 2.
1571 0
|
JavaScript 前端开发 Shell
|
JavaScript 前端开发 Shell