1.進入mysqlmysql
進入mysql的bin目錄,輸入mysql -u root -p回車,輸入密碼進入mysqlsql
2.使用mysql庫spa
use mysqlip
3.查看用戶表it
select host,user from userdate
4.更新用戶表select
update user set host='%' where user='root' limit 1權限
5.強制刷新權限密碼
flush privilegesim
完成以上步驟便可遠程訪問數據路了,關鍵的一句是update user set host='%' where user='root' limit 1,其中%表示容許任意ip遠程訪問。