zabbix server is not running: the information displayed may not be current

一、
1、关闭selinux及防火墙

2、在/etc/hosts文件里加入ip及对应的主机名。

3、修改配置文件:zabbix.conf.php
/opt/data/apache2/htdocs/zabbix/conf/zabbix.conf.php --zabbix web目录下面
编辑zabbix.conf.php文件,把$ZBX_SERVER的值改为本机的IP地址
$ZBX_SERVER = ‘192.168.1.111‘; #######用IP代替hostname

二、查看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

时间: 2024-10-13 14:43:26

zabbix server is not running: the information displayed may not be current的相关文章

无解了吗Zabbix server is not running:the information displayed may not be current

Zabbix server is not running:the information displayed may not be current 安装版本2.4.5 php5.5 mysql5.5 debian7.7 注:网上说要开启php支持openssl扩展,已经开启了呀 方法如下: 1.php.ini文件中查找 allow_url_fopen = On: 让你的php支持 opensll扩展. 2.默认,是没有openssl扩展的,只能重新编译安装. cd /data/php-5.5.2

zabbix web 登录成功后提示(红色提示):zabbix server is not running:the information displayed may not be current

原因是我配了外网地址因应是内网的: # cat /etc/zabbix/web/zabbix.conf.php <?php // Zabbix GUI configuration file. global $DB; $DB['TYPE'] = 'MYSQL'; $DB['SERVER'] = 'localhost'; $DB['PORT'] = '0'; $DB['DATABASE'] = 'zabbix'; $DB['USER'] = 'baidu'; $DB['PASSWORD'] = 'b

zabbix报zabbix server is not runing the information displayed may not be current

原因可能是安装界面的时候zabbix_server的服务器IP地址填的不对 修改配置文件 vim /usr/local/nginx/html/zabbix/conf/zabbix.conf.php 重启服务

zabbix安装后提示:Zabbix server is not running

安装zabbix后,配置相关选项,报警提示以下结果:server is not running:the information displayed may not be current查看zabbix的相关配置后发现都没有错误,仔细想想看防火墙,SELinux和时间的问题.1.检查防火墙[[email protected] ~]# systemctl status firewalld2.禁用SELinux[[email protected] ~]# setenforce 0[[email pro

zabbix server is not running解决办法

在安装Zabbix后,发现一直提示zabbix server is not running这个报错, 首先查看Zabbix的日志,tail /tmp/zabbix_server.log,发现一直提示以下报错 肯定是没有数据库的访问权限了,加上权限就OK了

zabbix提示zabbix server is not running &Get value from agent failed: cannot connect to

公司使用的是阿里云的服务器,搭建完发现提示"zabbix server is not running",系统防火墙默认没开启,网上翻遍了就那几个,还是不行. 突然想起是不是底层限制,打开购买服务器的账户,在"安全组"里果然要添加开发端口. 唉.浪费我一下午的时间. 如果你agentd配置文件没错 里面Server= 和ServerActive= 都设置没错,那么你就确认你的IP 是不是对的,因为同事申请的帐号用了旧文档没更新,让我在新机器上用老IP链接,肯定不可能联

zabbix server is not running端口未开启10051

今天部署zabbix服务总是提示zabbix server is not running 用命令查看端口也没有启动. # netstat -an  |grep 10051 后来在网上有人提到是否MYSQL没有连接成功.突然想起在MYSQL数据库授账号权时候限制只能127.0.0.1登录这个账号. #mysql -u root -p #输入密码,进入MySQL控制台 #grant all on zabbix.* to 'zabbixuser'@'127.0.0.1' identified by '

zabbix server is not running 的排错方法

前几天添加注册zabbix主机到数据库的时候,突然就包zabbix server is not running 这个报错: 查找网上资料,说什么数据库问题都有,结果都不适合,人家是安装的时候出问题的,我是用着用着就出问题. tail -n 50 /tmp/zabbix_server.log查看日志,有报错信息: 根据报错信息查阅资料,是内存溢出,需要增加CacheSize的大小,找到zabbix_server.conf配置文件定位到# CacheSize=8M,添加记录修改为32M,重启zabb

10 Zabbix4.4.0-告警“Zabbix server is not running”

点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 Zabbix4.4.0-告警“Zabbix server is not running” 第一步: 查看系统日志,进一步确认原因 cat /var/log/zabbix/zabbix_server.log 问题出现在数据库. 第二步 数据库确认 mysql -u root -p #root用户登陆数据库 如果登录不成功,就看一下登录密码是否正确以及zabbix用户是否有权限登录数据库. GRAN