与 MySQL 的连接错误;无权访问
Posted
技术标签:
【中文标题】与 MySQL 的连接错误;无权访问【英文标题】:Connection error with MySQL; No Access 【发布时间】:2017-06-12 09:44:30 【问题描述】:我在连接到 mysql 时遇到问题,我在 Google 和这个网站上寻找过,有解决该问题的方法,但它们在我的代码中不起作用。 代码如下:
public static String host = SQL.getInstance().getConfig().getString("Config.SQLhost");
public static String port = SQL.getInstance().getConfig().getString("Config.SQLport");
public static String database = SQL.getInstance().getConfig().getString("Config.SQLdatabase");
public static String username = SQL.getInstance().getConfig().getString("Config.SQLusername");
public static String password = SQL.getInstance().getConfig().getString("Config.SQLpassword");
public static Connection con;
public static void connect()
if(!isConnected())
try
con = DriverManager.getConnection("jdbc:mysql://" + host + ":" + port + "/" + database, username, password);
System.out.println("[SQL] Connected with MySQL.");
catch (SQLException e)
e.printStackTrace();
public static boolean isConnected()
return (con == null ? false : true);
这是错误报告:
java.sql.SQLException: Access denied for user 'localhost'@'localhost' (using password: YES)
[21:04:26 警告]:在 com.mysql.jdbc.SQLError.createSQLException(SQLError.java:959) [21:04:26 警告]:在 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3870) [21:04:26 警告]:在 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3806) [21:04:26 警告]:在 com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:871) [21:04:26 警告]:在 com.mysql.jdbc.MysqlIO.proceedHandshakeWithPluggableAuthentication(MysqlIO.java:1686) [21:04:26 警告]:在 com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1207) [21:04:26 警告]:在 com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2254) [21:04:26 警告]:在 com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2285) [21:04:26 警告]:在 com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2084) [21:04:26 警告]:在 com.mysql.jdbc.ConnectionImpl.(ConnectionImpl.java:795) [21:04:26 警告]:在 com.mysql.jdbc.JDBC4Connection.(JDBC4Connection.java:44) [21:04:26 警告]:在 sun.reflect.NativeConstructorAccessorImpl.newInstance0(本机方法) [21:04:26 警告]:在 sun.reflect.NativeConstructorAccessorImpl.newInstance(未知来源) [21:04:26 警告]:在 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(未知来源) [21:04:26 警告]:在 java.lang.reflect.Constructor.newInstance(未知来源) [21:04:26 警告]:在 com.mysql.jdbc.Util.handleNewInstance(Util.java:404) [21:04:26 警告]:在 com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:400) [21:04:26 警告]:在 com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:327) [21:04:26 警告]:在 java.sql.DriverManager.getConnection(未知来源) [21:04:26 警告]:在 java.sql.DriverManager.getConnection(未知来源)
我希望你能帮助我。问候,Curbe。
【问题讨论】:
请将错误发布为文本,而不是外部图片 您的数据库中是否有名为localhost
的用户?似乎用户不存在,或者没有足够的权限或密码不正确。检查一下。
【参考方案1】:
根据堆栈跟踪,您尝试使用 'localhost'@'localhost' 登录。我认为应该是:
localhost@localhost
此外,您应该将变量声明为私有变量,例如:
private static String username = SQL.getInstance().getConfig().getString("Config.SQLusername");
【讨论】:
感谢您的帮助,但它是这样显示的,数据被命名为 localhost,而不是 'localhost'。【参考方案2】:查看下面的更新代码。
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class MySqlConnection
// Replace credentials with correct values
private static String host = "localhost";
private static String port = "3306";
private static String database = "test";
private static String username = "root";
private static String password = "root";
private static Connection con;
public static void main(String[] args) throws ClassNotFoundException
if(!isConnected())
try
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://" + host + ":" + port + "/" + database, username, password);
System.out.println("[SQL] Connected with MySQL.");
catch (SQLException e)
e.printStackTrace();
public static boolean isConnected()
return (con == null ? false : true);
不要忘记将mysql-connector-java-5.0.8-bin.jar 添加到您的项目中。局部变量也应该声明为private
。
【讨论】:
谢谢,我试过了,还是不行,慢慢失去希望了 @Curbe 我自己试过了。它对我有用。确保您的凭据正确并添加了 jar。还要尝试调试并确保您的值已正确加载并且数据库架构存在。 制作很容易检查我尝试使用 main() 方法的完整代码。 @Curbe以上是关于与 MySQL 的连接错误;无权访问的主要内容,如果未能解决你的问题,请参考以下文章