码迷,mamicode.com
首页 > 数据库 > 详细

记录一个mysql skip-name-resolve问题导致WEB服务器页面打开很慢问题

时间:2020-09-24 22:10:13      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:添加   html   反向解析   ddr   比较   fail   port   查找   出现   

WEB服务器和DB服务器重启后,突然出现WEB页面打开延迟卡顿问题。

静态页面速度很快,php等页面很慢

排查发现DB的mysql.log提示reslove 失败

2020-09-24T07:35:17.212363Z 13607 [Warning] IP address ‘X.X.X.X‘ could not be resolved: Temporary failure in name resolution

由于mysql dns问题导致需要一段时间超时后才可以正常显示页面。

 

以下是参考资料:

 

原文地址:http://www.jb51.net/article/27616.htm


症状描述###

  • 本机连接mysql速度很快
  • 远程ping mysql主机速度正常
  • 远程连接mysql速度需要等待30秒左右(问题所在)
  • 远程连接后访问mysql中的表正常

原因是mysql主机不能访问广域网,连接DNS时连接不上,因此连接的时候会有延时。


解决办法###

在my.cnf中添加如下配置
[mysqld]
skip-name-resolve

重启mysql服务


说明###

根据文档说明,如果你的mysql主机查询DNS很慢或是有很多客户端主机时会导致连接很慢,由于我们的开发机器是不能够连接外网的,所以DNS解析是不可能完成的,从而也就明白了为什么连接那么慢了。同时,请注意在增加该配置参数后,mysql的授权表中的host字段就不能够使用域名而只能够使用 ip地址了,因为这是禁止了域名解析的结果。


以下是官方信息###

How MySQL uses DNS
When a new thread connects to mysqld, mysqld will spawn a new thread to handle the request. This thread will first check if the hostname is in the hostname cache. If not the thread will call gethostbyaddr_r() and gethostbyname_r() to resolve the hostname.
If the operating system doesn‘t support the above thread-safe calls, the thread will lock a mutex and call gethostbyaddr() and gethostbyname() instead. Note that in this case no other thread can resolve other hostnames that is not in the hostname cache until the first thread is ready.
You can disable DNS host lookup by starting mysqld with –skip-name-resolve. In this case you can however only use IP names in the MySQL privilege tables.
If you have a very slow DNS and many hosts, you can get more performance by either disabling DNS lookop with –skip-name-resolve or by increasing the HOST_CACHE_SIZE define (default: 128) and recompile mysqld.
You can disable the hostname cache with –skip-host-cache. You can clear the hostname cache with FLUSH HOSTS or mysqladmin flush-hosts.
If you don‘t want to allow connections over TCP/IP, you can do this by starting mysqld with –skip-networkin

 

 

链接:http://blog.sina.com.cn/s/blog_96ae64bd0100wtn3.html

mysql连接很慢,登陆到服务器上查看服务器日志都是正常的,无可疑记录,登陆到mysql服务器上,查看下进程,发现有很多这样的连接:
218 | unauthenticated user | 192.168.10.6:44500 | NULL  | Connect | NULL | login | NULL
219 | unauthenticated user | 192.168.10.6:44501 | NULL  | Connect | NULL | login | NULL  
........


原因是由于mysql对连接的客户端进行DNS反向解析。
有2种解决办法:
1,把client的ip写在mysql服务器的/etc/hosts文件里,随便给个名字就可以了。
2,在 my.cnf 中加入 –skip-name-resolve 。
对于第一种方法比较笨,也不实用,那么 skip-name-resolve 选项可以禁用dns解析,但是,这样不能在mysql的授权表中使用主机名了,只能使用IP。
我理解mysql是这样来处理客户端解析过程的,
1,当mysql的client连过来的时候,服务器会主动去查client的域名。
2,首先查找 /etc/hosts 文件,搜索域名和IP的对应关系。
3,如果hosts文件没有,则查找DNS设置,如果没有设置DNS服务器,会立刻返回失败,就相当于mysql设置了skip-name-resolve参数,如果设置了DNS服务器,就进行反向解析,直到timeout。



所谓反向解析是这样的:
mysql接收到连接请求后,获得的是客户端的ip,为了更好的匹配mysql.user里的权限记录(某些是用hostname定义的)。
如果mysql服务器设置了dns服务器,并且客户端ip在dns上并没有相应的hostname,那么这个过程很慢,导致连接等待。

添加skip-name-resolve以后就跳过着一个过程了。

 

记录一个mysql skip-name-resolve问题导致WEB服务器页面打开很慢问题

标签:添加   html   反向解析   ddr   比较   fail   port   查找   出现   

原文地址:https://www.cnblogs.com/smlie/p/13725101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!