1. 程式人生 > >Mysql開啟遠程服務

Mysql開啟遠程服務

端口 img pri col -i 登錄 IE root 權限

開啟遠程服務:

技術分享圖片

登錄mysql:

//賦予root用戶所有權限,遠程登錄密碼是123456

grant all privileges on *.* to root @% identified by 123456;
flush privileges;

設置Linux的防火墻:

Linux防火墻默認攔截3306端口

/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
/etc/rc.d/init.d/iptables save

Mysql開啟遠程服務