阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

远程连接MySQL很慢的解决方法

170次阅读
没有评论

共计 1599 个字符,预计需要花费 4 分钟才能阅读完成。

有次同事提出开发使用的 MySQL 数据库连接很慢,因为我们的 MySQL 开发数据库是单独一台机器部署的,所以认为可能是网络连接问题导致的。

在进行 ping 和 route 后发现网络通信都是正常的,而且在 MySQL 机器上进行本地连接发现是很快的,所以网络问题基本上被排除了。以前也遇到过一次这样的问题,可后来就不知怎么突然好了,这次又遭遇这样的问题,所以想看看是不是 MySQL 的配置问题。在查询 MySQL 相关文档和网络搜索后,发现了一个配置似乎可以解决这样的问题,就是在 MySQL 的配置文件中增加如下配置参数:

[mysqld]
skip-name-resolve

在 Linux 下配置文件是 /etc/my.cnf,在 windows 下配置文件是 MySQL 安装目录下的 my.ini 文件。注意该配置是加在 [mysqld] 下面,在更改配置并保存后,然后重启 mysql 并远程连接测试,一切恢复如初。该参数的官方解释信息如下:

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-networking.

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

本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-12/138060.htm

正文完
星哥说事-微信公众号
post-qrcode
 
星锅
版权声明:本站原创文章,由 星锅 2022-01-22发表,共计1599字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中