zoukankan      html  css  js  c++  java
  • zabbix报错cannot set resource limit: [13] Permission denied解决方法

    zabbix-server启动时出现以下错误:

      2912:20180326:050930.023 using configuration file: /etc/zabbix/zabbix_server.conf
      2912:20180326:050930.023 cannot set resource limit: [13] Permission denied
      2912:20180326:050930.023 cannot disable core dump, exiting...
      2916:20180326:050940.284 Starting Zabbix Server. Zabbix 3.4.7 (revision 77720).
    

     解决方法关闭selinux:

    [root@localhost ~]# vim /etc/selinux/config
    
    [root@localhost ~]# diff /etc/selinux/config.bak /etc/selinux/config
    7c7
    < SELINUX=enforcing
    ---
    > SELINUX=disabled
    [root@localhost ~]# setenforce 0
    You have new mail in /var/spool/mail/root
    [root@localhost ~]# getenforce
    Permissive
    

     开启zabbix-server服务 ok

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



  • 相关阅读:
    文件上传案例_Socket_测试
    Linux的小整理(入门)
    full stack 第一天
    基础考题 试题
    shell语法
    网络管理
    图像类
    定时储存
    网络管理
    磁盘管理
  • 原文地址:https://www.cnblogs.com/Dev0ps/p/8652215.html
Copyright © 2011-2022 走看看