創建一個mysql用戶,并設置可以遠程訪問
grant usage on *.* to 'fred'@'localhost' identified by 'fred';//創建用戶fred密碼ferdselect host,user,password from mysql.user where user='fred';//查看記錄 grant all privileges on *.* to fred@'%'identified by 'fred';//設置可以遠程訪問
解決方法:
1、改表法:
可能是你的帳號不允許從遠程登陸,只能在localhost。這個時候只要在localhost的那臺電腦,登入mysql后,更改?“mysql”?數據庫里的?“user”?表里的?“host”?項,從“localhost”改稱“%”
x:\>mysql -u root -pvmware mysql> use mysql; mysql>?flush privileges; |
注:mysql> flush privileges;?使修改生效。
2、授權法:
例如,你想myuser使用mypassword從任何主機連接到mysql服務器的話。
mysql> GRANT ALL PRIVILEGES ON *.* TO?'myuser'@'%'?IDENTIFIED BY 'mypassword' WITH GRANT OPTION; |
如果你想允許用戶myuser從ip為192.168.1.3的主機連接到mysql服務器,并使用mypassword作為密碼
mysql> GRANT ALL PRIVILEGES ON *.* TO?'myuser'@'192.168.1.3'?IDENTIFIED BY 'mypassword’ WITH GRANT OPTION; |