共计 226 个字符,预计需要花费 1 分钟才能阅读完成。
环境
- 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
正文完