20180927_Zabbix proxy poller processes more than 75% busy failure! solve

Recently, Zabbix proxy poller processes more than 75% busy failure has always occurred on the server! Call the police

I searched the Internet for a solution to the problem, but I couldn’t
find anything. I only found a solution for Zabbix poller processes more than 75% busy.

But it was resolved after a brainstorm.

The solution is as follows:

vim /etc/zabbix/zabbix_server.conf

找到 #StartProxyPollers=0
把后面的#去掉改成 StartProxyPollers=10

Save and exit restart the service

systemctl restart zabbix-server

Develop zabbix-server to restart tasks every day

crontab -e

写入

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

1. Ctrl+O write

2. "FIile name to Write..." appears, enter Enter

3.Ctrl+x to save the output

The prompt "crontab:installing new crontab" indicates success.

Guess you like

Origin blog.csdn.net/ichen820/article/details/115083112