|
This is a special setting on an official system, just treat it as a bug in mysql
Regardless of whether the method of linking is through hosts or IP, it will do a reverse check on DNS
mysqld will try to reverse-check IP -> dns. Because the reverse-check resolution is too slow, it will not be able to cope with excessive queries.
Solution:
/usr/local/mysql/bin/mysqld_safe --skip-name-resolve --user=mysql&
Just add --skip-name-resolve such a parameter, turn off the dns reverse check function of mysql. |
|