博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Zabbix报错信息及遇到的问题
阅读量:5253 次
发布时间:2019-06-14

本文共 1844 字,大约阅读时间需要 6 分钟。

1. 页面报错  Error connecting to database: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

我的数据库sock文件在这     /data/mysql/mysql.sock

[root@bash-5 ~]# mkdir /var/lib/mysql/ [root@bash-5 ~]# ln -s /data/mysql/mysql.sock /var/lib/mysql/mysql.sock
[root@bash-5 ~]# ll /var/lib/mysql/mysql.sock  lrwxrwxrwx 1 root root 22 Feb 14 19:30 /var/lib/mysql/mysql.sock -> /data/mysql/mysql.sock

 

2. Zabbix ( proxy ) poller processes more than 75% busy 问题

一:重启zabbix-server 结合定时任务

service zabbix-server restart

 crontab -e 新加一个定时任务:

@daily service zabbix-server restart > /dev/null 2>&1

 

二:编辑Zabbix Server的配置文件/etc/zabbix/zabbix_server.conf,找到配置StartPollers的段落:

### Option: StartPollers
#       Number of pre-forked instances of pollers.
#
# Mandatory: no
# Range: 0-1000
# Default:
# StartPollers=5

 直接在这增加一行:   StartPollers=10

 

Proxy的在这里: 

### Option: StartProxyPollers

# Number of pre-forked instances of pollers for passive proxies.
#
# Mandatory: no
# Range: 0-250
# Default:
# StartProxyPollers=1
StartProxyPollers=5

将参数配置改成多少取决于服务器的性能和监控的数量。内存足够的话可以设置高些

 

3. Zabbix value cache working in low memory mode

[root@localhost zabbix] vi /etc/zabbix/zabbix_server.conf

### Option: CacheSize
# Size of configuration cache, in bytes.
# Shared memory size for storing host, item and trigger data.
#
# Mandatory: no
# Range: 128K-2G
# Default:
# CacheSize=8M
CacheSize=256M

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

 

4. Zabbix value cache working in low memory mode 

修改 zabbix_server.conf配置文件,定位到ValueCacheSize,然后调高ValueCacheSize大小,大小根据自己环境调整

### Option: ValueCacheSize

# Size of history value cache, in bytes.
# Shared memory size for caching item history data requests.
# Setting to 0 disables value cache.
#
# Mandatory: no
# Range: 0,128K-64G
# Default:
ValueCacheSize=64M       ####默认为8M

转载于:https://www.cnblogs.com/mingetty/p/10316046.html

你可能感兴趣的文章
学习笔记21—PS换图片背景
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
Spring3.0 AOP 具体解释
查看>>
我的Hook学习笔记
查看>>
EasyUI DataGrid 中字段 formatter 格式化不起作用
查看>>
海量数据存储
查看>>
js中的try/catch
查看>>
[导入]玫瑰丝巾!
查看>>
自动从网站上面下载文件 .NET把网站图片保存到本地
查看>>
【识记】 域名备案
查看>>
STL uva 11991
查看>>
MY SQL的下载和安装
查看>>
自定义OffMeshLink跳跃曲线
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
学习Redux之分析Redux核心代码分析
查看>>
ABAP 创建和调用WebService
查看>>
C# 实例化顺序
查看>>
CSS水平垂直居中总结
查看>>