主页 > 知识库 > MySQL数据库远程连接很慢的解决方案

MySQL数据库远程连接很慢的解决方案

热门标签:铁路电话系统 百度竞价排名 呼叫中心市场需求 地方门户网站 服务外包 网站排名优化 AI电销 Linux服务器

有次同事提出开发使用的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地址了 ,因为这是禁止了域名解析的结果。

您可能感兴趣的文章:
  • MySQL数据库远程连接开启方法
  • 远程连接mysql 授权方法详解
  • MySQL远程连接丢失问题解决方法(Lost connection to MySQL server)
  • mysql 远程连接数据库的方法集合
  • 配置mysql允许远程连接的方法
  • 解决远程连接mysql很慢的方法(mysql_connect 打开连接慢)
  • navicat无法远程连接mysql的解决方法
  • MYSQL不能从远程连接的一个解决方法(s not allowed to connect to this MySQL server)
  • PHP远程连接MYSQL数据库非常慢的解决方法
  • 详解远程连接Mysql数据库的问题(ERROR 2003 (HY000))
  • 远程连接mysql数据库注意事项记录(远程连接慢skip-name-resolve)

标签:湘潭 湖南 铜川 仙桃 黄山 崇左 兰州 衡水

巨人网络通讯声明:本文标题《MySQL数据库远程连接很慢的解决方案》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266