mysql8.x开启远程登录
Posted mvpbang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql8.x开启远程登录相关的知识,希望对你有一定的参考价值。
mysql8.x密码的认证方式变了,需要修改远程认证方式
问题描述
Connection to lab-130-mysql failed.
Unable to load authentication plugin ‘caching_sha2_password‘.
问题解决
方法1
CREATE USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘123123‘; //修改密码认证方式为mysql_native_password
GRANT ALL ON *.* TO ‘root‘@‘%‘;
方法2
CREATE USER ‘root‘@‘%‘ IDENTIFIED BY ‘123123‘; //默认的密码认证插件caching_sha2_password
GRANT ALL ON *.* TO ‘root‘@‘%‘;
ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘123123‘;
以上是关于mysql8.x开启远程登录的主要内容,如果未能解决你的问题,请参考以下文章