第一步,修改配置文件:
vim /etc/mysql/my.cnf
找到
bind-address = 127.0.0.1
改為:
bind-address = 0.0.0.0
#允許任意ip地址訪問(wèn)
也可以指定ip地址。
重啟mysql:
sudo /etc/init.d/mysqld restart
第二步,修改數(shù)據(jù)庫(kù)配置:
授權(quán)root用戶進(jìn)行遠(yuǎn)程連接
grant all privileges on *.* to identified by password with grant option;
flush privileges;
第二行命令使設(shè)置生效。
更多信息請(qǐng)查看IT技術(shù)專欄