第一步,修改配置文件:
vim /etc/mysql/my.cnf
找到
bind-address = 127.0.0.1
改為:
bind-address = 0.0.0.0
#允許任意ip地址訪問
也可以指定IP地址。
重啟MySQL:
sudo /etc/init.d/mysqld restart
第二步,修改數據庫配置:
授權root用戶進行遠程連接
grant all privileges on *.* to root@"%" identified by "password" with grant option;
flush privileges;
第二行命令使設置生效。