错误:客户端不支持服务器请求的身份验证协议;考虑升级mysql客户端

l7wslrjt  于 2021-06-20  发布在  Mysql
关注(0)|答案(4)|浏览(451)

在执行jdbc程序时,连接到数据库时出现以下错误:

Exception in thread "main" 
com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Client does 
not support authentication protocol requested by server; consider upgrading 
MySQL client
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:921)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2985)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:885)
at com.mysql.jdbc.MysqlIO.secureAuth411(MysqlIO.java:3421)
at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1247)
at com.mysql.jdbc.Connection.createNewIO(Connection.java:2775)
at com.mysql.jdbc.Connection.<init>(Connection.java:1555)
at 
com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:285)
at java.sql.DriverManager.getConnection(DriverManager.java:664)
at java.sql.DriverManager.getConnection(DriverManager.java:270)
at main.java.MyFirstJdbcProgram.readDataBase(MyFirstJdbcProgram.java:23)
at main.java.Main.main(Main.java:6)

当我研究这个问题时,我知道下面的错误是因为我需要向用户授予特权,所以请遵循 mysql -u root -p 然后输入密码
然后我跑了

GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'mypassword';

我也用过

UPDATE user SET authentication_string=password('mypassword') WHERE user='root';

但我的错误率正在下降
错误1064(42000):您的sql语法有错误;请查看与mysql服务器版本对应的手册,以获取在第1行的“mypassword”标识的“near”中使用的正确语法

f0ofjuux

f0ofjuux1#

跑步: export MYSQL_PW='your_password' 并在下面的代码中使用'process.env.mysql\u pw'作为密码。

var connection = mysql.createConnection({
  host     : 'localhost',
  user     : 'root',  //your root username 
  database : 'your_database',   //the name of your db (create this if you haven't already)
  password : process.env.MYSQL_PW   //your root user's password
});
alen0pnh

alen0pnh2#

发生此错误的原因是您使用的是mysql connector/j 5.1.45或更早版本。mysql 8引入了一种新的身份验证机制( caching_sha2_password )这些版本的驱动程序不支持。
您需要升级到mysql connector/j5.1.46或更高版本。在编写本文时,mysql connector/j驱动程序的最新版本是8.0.15。你可以从https://dev.mysql.com/downloads/connector/j/ 或者在maven/gradle中指定正确的版本,等等。

mwg9r5ms

mwg9r5ms3#

如果您是用mysql-8安装jasper服务器。运行js-install-ce.bat时会出现此错误。
您只需重新安装mysql-8,身份验证方法为:“use legacy authentication method(retain mysql 5.x compatibility)”,如snapshot:enter image description here所示

biswetbf

biswetbf4#

您使用的是MySQL8.0.17还是高于5.7的版本?卸载这个版本,因为这个版本使用ssh密码加密,这就是为什么我们的数据库密码他们不能采取。安装版本5.6或5.5,然后它是工作正常,或者你非常了解什么问题或我说什么。

相关问题