MySQL Variables error_count 数据库 参数变量解释及正确配置使用

本站中文解释

& max_connect_errors

error_count:表示错误计数器,用来跟踪系统错误次数,其值会自动增加,当超过max_connect_errors值时,系统会拒绝连接。

max_connect_errors:表示最大连接错误次数,当 error_count 增加到这个值时,系统会拒绝连接。

设置方法:

打开MySQL配置文件(mysql.conf.d/.cnf),在[mysqld]节点下添加如下配置项:

error_count = 0
max_connect_errors = 100

保存修改后,重新加载MySQL服务配置:
sudo systemctl restart mysql

官方英文解释

error_count

The number of errors that resulted from the last statement
that generated messages. This variable is read only. See
Section 13.7.5.17, “SHOW ERRORS Statement”.


数据运维技术 » MySQL Variables error_count 数据库 参数变量解释及正确配置使用