查詢mysql長連接,MySQL數據庫遠程連接很慢的解決方案?
不允許遠程連接這個數據庫,你看下mysql端口是否打開,另外查看一下mysql是否允許遠程連接
幾個解決方案,自己看下
1.修改改mysql配置文件(/etc/mysql/my.cnf),注釋以下行:
#bind-address=127.0.0.1
2.重啟mysql數據庫,對于ubuntu系統,執行如下命令
sudo/etc/init.d/mysqlrestart
3.以root用戶登錄mysql后,執行如下命令:
grantallprivilegeson*.*toroot@’允許登錄的遠程機器ip’
identifiedby‘密碼’
或者
grantallprivilegeson*.*to'myuser'@'%'identifiedby'mypassword'withgrantoption;
如果你想允許用戶myuser從ip為168.160.12.50的主機連接到mysql服務器,并使用mypassword作為密碼
grantallprivilegeson*.*to'myuser'@'168.160.12.50'identifiedby'mypassword'withgrantoption;