MYSQL讓別人遠程訪問本身的數據庫

MYSQL要想讓別人遠程訪問本身的數據庫,必須讓mysql庫中user表的host字段爲%,接受遠程控制請求 ,能夠進入mysql>user mysql;
mysql>update user set host="%" where user="root" and host="localhost";
重啓數據庫生效
service mysqld stop
service mysqld start
#這樣別人就能夠經過  mysql -h xxx.xxx.xxx.xxx(你電腦的IP) -u root -p密碼 進行鏈接並操做數據庫了。mysql

相關文章
相關標籤/搜索