程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 遠程連接MySQL速度慢的解決

遠程連接MySQL速度慢的解決

編輯:MySQL綜合教程

以下的文章主要介紹的是遠程連接MySQL速度慢的實際解決方案,即,用skip-name-resolve來對DNS的反向進行取消的詳細解析,以下就是文章的具體內容的描述,希望在你今後的學習中會有所幫助。
 
PHP遠程連接MySQL速度慢,有時遠程連接到MySQL用時4-20秒不等,本地連接MySQL正常,出現這種問題的主要原因是,默認安裝的MySQL開啟了DNS的反向解析,在MY.INI(WINDOWS系統下)或MY.CNF(UNIX或LINUX系統下)文件的[MySQLd]下加入skip-name-resolve這一句。

但是,這樣會引起一個問題:連接MySQL時,不能使用 localhost連接了,而是要使用IP地址的;如果是按localhost對用戶賦權限的話,用戶登錄權限也要修改一下的。

連接MySQL速度慢的解決方法.

2台服務器,一台跑iis+php,一台跑MySQL,和以往一樣配置好環境,測試頁面一切OK

跑應用的時候發現php訪問MySQL速度很慢,這種情況在以前從未發現過,雖然2台服務器並非在同一網段中,但是ping數值基本上都在1,2ms之間,tcp連接應該不是問題關健,google以後找到答案,在my.ini文件的[MySQLd]部分加入:skip-name-resolve,保存文件,重啟MySQL,一切OK啦,速度象飛一樣了

新版本的MySQL配置起來不象以前的那個傻瓜化了,這個問題折騰了我一上午的時間,晚上回來總算是解決了,嘿嘿,又學到一些東西。

Windows 2003下的MySQL 5服務器,本機連接到MySQL服務非常快,局域網內有兩台Linux機器,有一台連接很快,另外一台輸入密碼後要等好幾秒鐘才能連上。

解決辦法:

在MySQL服務器的配置中增加一個如下配置後速度飛快。

  1. [MySQLd]  
  2. skip-name-resolve 

附錄:( 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.

PHP遠程連接MySQL速度慢,有時遠程連接到MySQL用時4-20秒不等,本地連接MySQL正常,出現這種問題的主要原因是,默認安裝的MySQL開啟了DNS的反向解析,在MY.INI(WINDOWS系統下)或MY.CNF(UNIX或LINUX系統下)文件的[MySQLd]下加入skip-name-resolve這一句。

MySQL遠程連接速度慢的解決方法

在局域網內連接其他機器的MySQL,發現MySQL速度慢的很,不知道什麼原因,總有幾秒的延遲.

後來在網上發現解決方法,my.ini裡面添加

  1. [MySQLd]  
  2. skip-name-resolve   
  3. skip-grant-tables 

這樣速度就快了!

  1. skip-name-resolve  

選項就能禁用DNS解析,連接速度會快很多。不過,這樣的話就不能在MySQL的授權表中使用主機名了而只能用ip格式。

若使用–skip-grant-tables系統將對任何用戶的訪問不做任何訪問控制,但可以用 MySQLadmin flush-privileges或MySQLadmin reload來開啟訪問控制;默認情況是show databases語句對所有用戶開放,

如果MySQL服務器沒有開遠程帳戶,就在my.ini裡面加上skip-grant-tables

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved