本地无法连接docker的mysql
本地docker安装mysql后执行命令可以授权root用户连接
alter user 'root'@'%' identified with mysql_native_password by '123456';
更改docker容器中mysql无法输入中文问题
echo "export LANG='C.UTF-8'" >> ~/.bashrc ; bash ;echo $LANG
本地docker安装mysql后执行命令可以授权root用户连接
alter user 'root'@'%' identified with mysql_native_password by '123456';
echo "export LANG='C.UTF-8'" >> ~/.bashrc ; bash ;echo $LANG