http://www.jb51.net/article/27616.htm
 
有次同事提出开发使用的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地址了,因为这是禁止了域名解析的结果。

最新文章

  1. java程序打包成jar
  2. PHP程序员进阶学习书籍参考指南
  3. javascript知识点记录(2)
  4. vs2010 使用IIS EXPRESS出错.
  5. Python学习2-列表和元组
  6. web浏览器下的缓存 - Etag
  7. 升级iOS10后SearchController焦点无法获取的问题
  8. 【转】让itunes下载加速的真正办法,转向至香港台湾澳门苹果服务器 -- 不错不错!!!
  9. 解决win8与VC++6.0不兼容问题
  10. js中return false,return,return true的使用方法及区别
  11. 基于wax的lua IOS插件开发
  12. C#截图操作方法大全
  13. Windows系统下安装Python的SSH模块教程
  14. QT移植
  15. 【转】java jvm 线程 与操作系统线程
  16. Spring Task定时任务Scheduled
  17. 关于git的reset指令说明-soft、mixed、hard
  18. 025-du命令查看文件大小
  19. Spring在代码中获取properties文件属性
  20. 2018.09.09 codeforces280C. Game on Tree(期望dp)

热门文章

  1. Enterprise Solution 应用程序开发框架培训
  2. 数组的一个强大函数splice,[增,删,改]
  3. 浏览器加载和渲染html的顺序
  4. PHP的学习--可变变量
  5. [OpenCV] Samples 02: [ML] kmeans
  6. 安装android studio报错Failed to install Intel HAXM.
  7. Network - curl和Wget
  8. 单纯形方法(Simplex Method)
  9. C#抽象类
  10. 【转载】8天学通MongoDB——第四天 索引操作