您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么解決mysql數(shù)據(jù)庫IP address could not be resolved報錯問題”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么解決mysql數(shù)據(jù)庫IP address could not be resolved報錯問題”吧!
剛剛接觸mysql數(shù)據(jù)庫,所以很多東西都不會,今天查看剛剛建好的mysql,發(fā)現(xiàn)日志中出現(xiàn)好多的warning,自己查了一下,網(wǎng)上的人都說
這個警告不會影響數(shù)據(jù)庫的訪問 但是當有大量的這種日志產(chǎn)生的時候,數(shù)據(jù)庫之前的錯誤信息 就會很難去查詢了。連接數(shù)越多,產(chǎn)生報警日志的頻率越高。
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 12:59:16 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
2014-08-13 13:00:36 3149 [Warning] IP address '172.17.206.195' could not be resolved: Temporary failure in name resolution
問題產(chǎn)生的原因:
出現(xiàn)錯誤的原因是MYSQL Server在本地內(nèi)存中維護了一個非本地的Client TCP cache,這個cache中包含了遠程Client的登錄信息,比如IP地址,hostname等信息。
如果Client連接到服務器后,Mysql首先會在本地TCP池中根據(jù)IP地址解析客戶端的hostname或者反解析,如果解析不到,就會去DNS中進行解析,如果還是解析失敗就是在error log中寫入這樣的警告信息。
解決的辦法:
1.可以通過兩個參數(shù)來disable這個功能,在MYSQL的配置文件中[mysqld]中加入下面的參數(shù):
[mysqld]
skip-host-cache
skip-name-resolv
它將禁止 MySql Server 對外部連接進行 DNS 解析,使用這一選項可以消除 MySql 進行 DNS 解析的時間。但是,這樣會引起一個問題:連接mysql時,
不能使用 localhost連接了,而是要使用IP(127.0.0.1)地址的;如果是按localhost,對用戶賦權限的話,用戶登錄權限也要修改一下的
感謝各位的閱讀,以上就是“怎么解決mysql數(shù)據(jù)庫IP address could not be resolved報錯問題”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對怎么解決mysql數(shù)據(jù)庫IP address could not be resolved報錯問題這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。