赞
踩
问题一:
zabbix-server的运行值为NO,则修改zabbix-server.conf中zabbix-server.conf=127.0.0.1后重启zabbix-server服务即可。
Zabbix server is running NO localhost:10051
//根据如上如上错误提示,表示zabbix Server服务(核心组件)的进行状态是NO,没有监控本地localhost接口地址+10051端口。
解决方法:通过手工方式检测Zabbix_server服务进程和端口号是否启动。
[root@localhost ~]# ps -ef |grep zabbix //查看它的服务有没有启动
root 15282 78233 0 15:17 pts/1 00:00:00 grep --color=auto zabbix
//grep本身的进程,不算。说明zabbix-server没有启动。
[root@localhost ~]# netstat -tunlp |grep -aw 10051
//查看10051端口号有没有打开, -a是以文本方式显示 -w是只看文本关键词 --color 加上颜色
//显示为空的话,通过手动方式启动zabbix-server服务脚本即可。
[root@localhost ~]# /etc/init.d/zabbix_server restart
[root@localhost ~]# echo $?
0 //表示执行结果正常。
//OR
或者查看zabbix-server.conf文件配置是否正确
修改zabbix-server.conf中的DBHost=127.0.0.1后重启服务查看结果。
问题二、
[root@localhost ~]# /etc/init.d/zabbix_server start
Can't fi
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。