zabbix Too many processes on xxx

1. The problem of forgotten login password on zabbix web page

# mysql -u root -p
> use zabbix;
>UPDATE users SET passwd=md5('123456') WHERE alias='Admin';
>flush privileges;
>quit

Mysql root password forgotten problem

# /etc/init.d/mysql stop
# mysqld_safe --skip-grant-tables&
mysql -u root -p
> UPDATE user SET password=PASSWORD('123456') WHERE user='root';
> flush privileges;

2、zabbix Too many processes on xxx

The reason for the error: The
default traffic limit of zabbix is ​​300. When the number of processes of our server is greater than 300, the package name will occur. Here we can adjust Too many processes on {HOST.NAME} to modify the value to 3000 (based on our own server performance definition ), the original value is 300.

Insert picture description here
Insert picture description here

Insert picture description here

Then go to the dashboard to see that the alarm is no longer available.

Insert picture description here

Guess you like

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