服务器安装mysql,释放3306端口就不用说了,然后就是配置一下数据库的权限,
1.进入ubuntu,连接数据库并输入密码:
mysql -u -root -p
2.输入一下命令进行授权(mysql语句不区分大小写):
grant all privileges on *.* to 'root'@'%' identified by '你的mysql密码' with grant option;
3.刷新权限:
flush privileges;
这个时候navicat可能连接不上mysql,
不要慌,配置一下mysql的权限文件,修改bind-address=0.0.0.0,新版本mysql需要在etc/mysql/mysql.conf.d/mysqld.cnf里面修改,
修改完成之后记得重启一下mysql服务,命令:sudo service mysql restart
标签:grant,0.0,privileges,连不上,navicat,mysql,权限 From: https://blog.51cto.com/u_16159492/6479860