PHP连接远端mysql很慢,要5-10秒,修改了my.cnf配置文件还是没用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP连接远端mysql很慢,要5-10秒,修改了my.cnf配置文件还是没用相关的知识,希望对你有一定的参考价值。

php连接远端mysql很慢,要5-10秒,修改了my.cnf配置文件还是没用
网上查资料说在 my.cnf配置文件,[mysqld]下加了skip-name-resolve并重启, 就可以解决这个问题

但是我这样修改没有效果
环境:两台liunx设备A、B,php服务器跑在A上面,mysql在B机器上,两台机器连在同一个局域网中,同一网段,互相ping的时间大概0.4ms。

所以应该不是网络问题,应该是mysql配置的问题或者是php配置的问题。
求解决,100分悬赏,谢谢

这个问题我遇到过,一般出现这种情况都是DNS反解析问题,还有SSH连接过慢问题也是。
搞定的方法,就是加入google的DNS:8.8.8.8
windows系统可以配置第备用DNS为8.8.8.8
Linux系统可以配置为nameserver 8.8.8.8
参考技术A php 和 mysql 不在一个服务器 本来就慢,就跟 使用 IE浏览器和 谷歌浏览器似的,想打开网页快,就用谷歌浏览器,要从本质解决问题 参考技术B 同一个局域网,你的连接主机地址怎么填写的.

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

开发某应用系统连接公司的测试服务器的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地址了,因为这是禁止了域名解析的结果。

以上是关于PHP连接远端mysql很慢,要5-10秒,修改了my.cnf配置文件还是没用的主要内容,如果未能解决你的问题,请参考以下文章

php+mysql查询上万条数据很慢,其中把分页去掉就快了

php+mysql链接很慢,无响应

mysql如何找出慢sql

php通过公网ip链接mysql,速度很慢,如何解决?

mysql远程连接很慢问题解决

远程连接mysql数据慢的问题