關閉/開啟red hat防火牆
/* 關閉防火牆*/
service iptables stop
/* 開啟防火牆*/
service iptables start
/* 預設關閉防火牆*/
chkconfig iptables off
授權法。
例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;
flush privileges;
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器,並使用mypassword作為密碼
grant all privileges on *.* to 'myuser'@'192.168.1.3' identified by 'mypassword' with grant option;
flush privileges;
如果你想允許使用者myuser從ip為192.168.1.6的主機連線到mysql伺服器的dk資料庫,並使用mypassword作為密碼
grant all privileges on dk.* to 'myuser'@'192.168.1.3' identified by 'mypassword' with grant option;
flush privileges;
我用的第乙個方法,剛開始發現不行,在網上查了一下,少執行乙個語句mysql>flush rivileges 使修改生效.就可以了
作者 iloveyin
mysql無法遠端訪問解決
mysql資料庫不允許從遠端訪問怎麼辦?本文提供了三種解決方法 1 改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 mysql ...
解決MySQL無法遠端訪問的3方案
收藏 分享在解決mysql無法遠端訪問的實際操作中我們經常會選擇的方案,除了改表法與授權法,在安裝mysql的機器上執行這一方法也是比較好用的方案,以下就是文章對解決mysql無法遠端訪問的一些解決方案的描述。mysql無法遠端訪問方法1 改表法。可能是你的帳號不允許從遠端登陸,只能在localho...
解決MySQL無法遠端訪問的方法
關閉 開啟red hat防火牆 關閉防火牆 service iptables stop 開啟防火牆 service iptables start 預設關閉防火牆 chkconfig iptables off 授權法。例如,你想myuser使用mypassword從任何主機連線到mysql伺服器的話。...