#docker安装mysql
docker pull mysql
docker run --name mysql -p 3307:3306 -e MYSQL_ROOT_PASSWORD=123 -d mysql
这个时候navicat远程连接mysql的时候,会提示以下错误:
解决方法:
1、在虚拟机中登录到mysql容器,然后进入mysql
docker exec -it mysql /bin/bash
mysql -uroot -p
Enter password:
mysql> select host,user,plugin,authentication_string from mysql.user;
备注:host为 % 表示不限制ip localhost表示本机使用 plugin非mysql_native_password 则需要修改密码
2、修改密码
mysql> use mysql;
mysql> alter user ‘root‘@‘%‘ identified with mysql_native_password by ‘123‘;
mysql> flush privileges;
mysql> select host,user,plugin,authentication_string from mysql.user;
出现上述图片,再次用navicat远程连接mysql就成功了
原文地址:http://blog.51cto.com/autophp/2319467
时间: 2024-10-14 10:40:33