在CentOS7上安装完成MariaDB之后,发现无论命令行还是程序中连接MariaDB的时候都很慢,大约要一二十秒,于是网上搜索了一番,发现下面的文章内容:

在进行 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: ) 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地址了,因为这是禁止了域名解析的结果。

注意,在我的环境中,我修改的配置文件是:/etc/my.cnf.d/server.cnf

最新文章

  1. NOIP 考前 计算几何练习
  2. Codeforces Round #371 (Div. 2) C. Sonya and Queries
  3. [转]MYSQL远程登录权限设置
  4. 第一章 初识MVC4
  5. 【 CodeForces - 392C】 Yet Another Number Sequence (二项式展开+矩阵加速)
  6. 使用sqlcmd执行连接的时候一直报有语法错误
  7. Android RadioGroup/RadioButton
  8. OpenCV编程->Windows7下调用iPhnoe摄像头
  9. 关于制作C语言头文件的思考
  10. LCS 51Nod 1134 最长递增子序列
  11. Java内存区域与内存溢出异常(JVM学习系列1)
  12. c++中,如果访问数组越界,程序可能会意外终止(像死循环)
  13. OpenCV3.30 画图函数
  14. codeforces379C
  15. redis 做默认缓存
  16. request.getScheme() 使用方法
  17. Pwn with File结构体(一)
  18. django_models_Meta字段详解
  19. XAMPP之Mysql启动失败
  20. webapp开发基础

热门文章

  1. 潭州课堂25班:Ph201805201 WEB 之 jQuery 第七课 (课堂笔记)
  2. GDB高级调试
  3. Tinkoff Challenge - Final Round (Codeforces Round #414, rated, Div. 1 + Div. 2) 【ABC】
  4. emSecure Use Digital Signatures to protect your products
  5. AngularJS自定义Directive中link和controller的区别
  6. 游戏保护大放送之GPK
  7. java 线程池 使用实例
  8. 461.汉明距离(c++实现)
  9. iOS开发-UIImageView高效设置Radius
  10. (亲测解决)每次打开excel文件都会出现两个窗口,一个是空白的sheet1,另一个是自己的文档