禁止mysql做網域名稱解析(解決遠端存取mysql時很慢)

來源:互聯網
上載者:User

當遠端存取mysql時,mysql會解析網域名稱,會導致訪問速度很慢,加上下面這個配置可解決此問題

禁止mysql做網域名稱解析
[mysqld]

skip-name-resolve

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伺服器的配置中增加一個如下配置後速度飛快。

[mysqld]
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,發現速度慢的很,不知道什麼原因,總有幾秒的延遲.

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

複製代碼 代碼如下:[mysqld]
skip-name-resolve
skip-grant-tables

這樣速度就快了!

skip-name-resolve

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

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

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.