zabbix 启动报错 cannot set resource limit: [13] Permission denied

zabbix 启动报错 cannot set resource limit: [13] Permission denied 


 

1、zabbix-server 启动报错

报错信息如下:

  1668:20191220:140823.988 using configuration file: /etc/zabbix/zabbix_server.conf
  1668:20191220:140823.988 cannot set resource limit: [13] Permission denied
  1668:20191220:140823.988 cannot disable core dump, exiting...
  1677:20191220:140834.103 Starting Zabbix Server. Zabbix 3.4.15 (revision 86739).

2、解决方案

1)修改 /etc/selinux/config 文件,关闭 selinux(事先备份文件)

[root@localhost zabbix]# cd /etc/selinux/
[root@localhost selinux]# ls
config  final  semanage.conf  targeted  tmp
[root@localhost selinux]# cp config config.bak20191220
[root@localhost selinux]# vi config

将 SELINUX 修改为 disabled

[root@localhost selinux]# setenforce 0
[root@localhost selinux]# getenforce
Permissive

2)启动 zabbix-server 服务

[root@localhost zabbix]# systemctl start zabbix-server

3)如果此时 zabbix-server 服务能正常启动,而zabbix页面不能正常访问,请再确认下 防火墙是否关闭

原文地址:https://www.cnblogs.com/miracle-luna/p/12072999.html