MySql修改和新增遠端登入賬號

2021-09-26 03:30:39 字數 532 閱讀 6067

mysql -uroot -p密碼;

use myql;

select user,authentication_string,host from user;

delete from user where host=』%』 ;

grant all privileges on . to 『root』@』%』 identified by 『123456』 ;

flush privileges;

****當然如果你是用的是阿里雲esc伺服器,請在esc上配置安全規則,開放3306埠,外網才能訪問。

如果你的root賬號的密碼是root,那麼就好辦了,請開啟cmd,執行以下命令:

mysql -uroot -proot ;

use mysql ;

delete from user where host=』%』 ;

grant all privileges on . to 『root』@』%』 identified by 『123456』 ;

flush privileges ;

mysql修改遠端登入密碼

1.登入mysql命令 mysql uroot p 回車輸入密碼 2.查詢使用者表和主機許可權命令 3.刪除root這個遠端訪問使用者,delete from mysql.user where user root and host 4.更新許可權命令 flush privileges 5.重新查詢使...

為mysql新增遠端登入許可權

1。改表法。可能是你的帳號不允許從遠端登陸,只能在localhost。這個時候只要在localhost的那台電腦,登入mysql後,更改 mysql 資料庫裡的 user 表裡的 host 項,從 localhost 改稱 mysql u root pvmwaremysql use mysql my...

mysql遠端登入許可權修改ubuntu

mysql預設只允許在localhost主機登入,如果想要通過遠端登入管理,需要修改相應的許可權。首先 開啟mysql所在主機的3306埠,或者關閉防火牆。service iptables stop centos關閉防火牆 檢視資料庫許可權 show grants 允許其他主機訪問mysql gra...