开启MySQL远程访问权限 允许远程连接
环境
- Ubuntu 18.04
- MySQL5.7
登陆mysql数据库
mysql -uroot -p
增加远程连接权限
use mysql; grant all privileges on *.* to root@'%' identified by "password"; flush privileges;
修改MySQL配置文件
vim /etc/mysql/mysql.conf.d/mysqld.cnf注释掉
bind-address
这行重启mysql服务
service mysql restart
相关推荐
似水流年梦 2020-08-09
JamesRayMurphy 2020-07-26
lizzysnow 2020-07-18
willowwgx 2020-07-18
xilove0 2020-07-09
云端漂移 2020-07-05
hnyzyty 2020-07-05
heavenautumn 2020-06-21
netuser 2020-06-14
淡风wisdon大大 2020-06-06
巴壁虎 2020-05-30
RocketJ 2020-05-28
tanrong 2020-05-20
heniancheng 2020-05-15