当前位置: > Linux服务器 > 监控工具 >

zabbix server is not running解决办法

时间:2014-12-25 17:05来源:linux.it.net.cn 作者:IT

正常安装完zabbix后,登录后zabbix监控报错zabbix server is not running: the information displayed may not be current, 

下面的几种情况都有可能引起这个错误, 

1. selinux是否关闭。一定要关闭这个,开启selinux会引起一连串问题,甚至zabbix的discovery功能也不能正常使用 

关闭SELinux的方法: 
修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启。 
如果不想重启系统,使用命令setenforce 0 
注: 
setenforce 1 设置SELinux 成为enforcing模式 
setenforce 0 设置SELinux 成为permissive模式  
在lilo或者grub的启动参数中增加:selinux=0,也可以关闭selinux 

  

2. zabbix web目录下面  $ZBX_SERVER 是否为ip,如果是localhost,ping下localhost是否能解析。如果不能,需要在/etc/hosts文件里增加相应的项目 

3.查看php的fsockopen模块是否启用。 

 

方法一: 

  第一步: 

  php.ini文件中查找 

  allow_url_fopen = On 

  使其值为On 

 

  第二步: 

  php.ini文件中查找 

  extension=php_openssl.dll 

  如果前面有分号,去掉分号 

  第三步: 

  重启web服务器,apache或IIS 

  还有一种情况,也就是方法二: 

  1. vi php.ini 

  找到 allow_url_fopen 这个参数设置成 On,即 

  allow_url_fopen = On 

  2. 让你的php支持 opensll扩展。 

  默认,是没有openssl扩展的,只能重新编译安装。 

  yum install openssl openssl-devel 

  cd /usr/local/src/php-5.2.14/ext/openssl 

  /usr/local/php/bin/phpize 

  ./configure –with-openssl –with-php-config=/usr/local/bin/php-config 

  make && make install 

  看提示,把编译成的openssl.so 拷贝到你在php.ini 中指定的 extension_dir 下 

  3. vi php.ini 

  加入 

  extension=openssl.so

  4. 重启web server



(责任编辑:IT)
------分隔线----------------------------