“Host is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“一次 aws rds mysql故障处理过程 =Q= Host is ’U vm ip‘ blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' =R= 如上可见…”)
 
→‎R
第4行: 第4行:
 
Host is ’U vm ip‘ blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
 
Host is ’U vm ip‘ blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
 
=R=
 
=R=
如上可见  这个 IP被mysql
+
<pre>
 +
如上可见  这个 IP被mysql server  blocked
 +
 
 +
处理过程  计数清理掉
 +
一开始 连接到 mysql server  mysqladmin  -h database-.com -uroot  -P3306 -p flush-hosts
 +
看进来是正常的  不过在那台VM 还是连接不上 mysql
 +
 +
中间各种 google  还是没成功  ,又想到  max_connect_errors  show global variables like '%max_connect_errors%'; 
 +
打开 rds  web 改配置 一开始搞到 500  还是不行  中间各种搞  各种 mysql>kill  在最后 改为2W 好了 哈哈
 +
 
 +
</pre>
 +
=tips=
 +
当客户端连接服务端超时(超过connect_timeout), 服务端就会给这个客户端记录一次error,当出错的次数达到max_connect_errors的时候,这个客户端就会被锁定。所以根据业务来尽量把这个值设置大一点,mysql默认值为10,我们可以根据具体需要设置大一点,这里设置为1000.(并非越大越好,越大被攻击时安全性越低)
 +
=see also=
 +
https://blog.csdn.net/li_li_lin/article/details/72764683

2020年3月18日 (三) 03:02的版本

一次 aws rds mysql故障处理过程

Q

Host is ’U vm ip‘ blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'

R

如上可见  这个 IP被mysql server  blocked 

处理过程   计数清理掉
 一开始 连接到 mysql server  mysqladmin  -h database-.com -uroot  -P3306 -p flush-hosts
 看进来是正常的  不过在那台VM 还是连接不上 mysql 
 
 中间各种 google  还是没成功  ,又想到  max_connect_errors   show global variables like '%max_connect_errors%';  
 打开 rds  web 改配置 一开始搞到 500  还是不行  中间各种搞  各种 mysql>kill   在最后 改为2W 好了 哈哈 

tips

当客户端连接服务端超时(超过connect_timeout), 服务端就会给这个客户端记录一次error,当出错的次数达到max_connect_errors的时候,这个客户端就会被锁定。所以根据业务来尽量把这个值设置大一点,mysql默认值为10,我们可以根据具体需要设置大一点,这里设置为1000.(并非越大越好,越大被攻击时安全性越低)

see also

https://blog.csdn.net/li_li_lin/article/details/72764683