Home > Database > Mysql Tutorial > 解决MySQL出现大量unauthenticateduser的问题_MySQL

解决MySQL出现大量unauthenticateduser的问题_MySQL

WBOY
Release: 2016-06-01 13:02:16
Original
1107 people have browsed it

最近OJ及相关的网站打开异常的慢,简直崩溃,一直没找着原因!

进入数据库服务器,进到mysql里,用show processlist命令查看一下,发现有很多的unauthenticated user

google了一下,

发现这算属MySQL的一个bug,不管连接是通过hosts还是ip的方式,MySQL都会对DNS做反查,IP到DNS,由于反查的接续速度过慢

(不管是不是isp提供的dns服务器的问题或者其他原因),大量的查询就难以应付,线程不够用就使劲增加线程,但是却得不到释放,所以MySQL会“假死”。

解决的方案很简单,结束这个反查的过程,禁止任何解析。

打开mysql的配置文件(my.cnf),在[mysqld]下面增加一行:

skip-name-resolve

重新载入配置文件或者重启MySQL服务即可。

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template