java.sql.SQLException:用户'root @ localhost'@'localhost'拒绝访问(使用密码:YES)

时间:2014-07-19 08:21:11

标签: java mysql jdbc

我使用Eclipse和MySQL db连接Java

CODE

import java.sql.*;
import java.io.*;

public class DbDemo {

    public static void main(String args[]) throws ClassNotFoundException, SQLException {

        String s;       
        String uname="root@localhost";
        String url="jdbc:mysql://localhost:3306/student";

        String password="Hsun123";

        int i;

        try {

            Class.forName("com.mysql.jdbc.Driver").newInstance();

            Connection con=DriverManager.getConnection(url,uname,password);

            Statement st=con.createStatement();

            ResultSet rs=st.executeQuery("select * from student_detail");

            if(rs.next()) {

                i=rs.getInt(1);

                s=rs.getString(2);

                System.out.println(i+"/t"+s);
            }           

            rs.close();

            st.close();

            con.close();

        } catch(Exception e) {
            e.printStackTrace();
        }
    }
}

错误

java.sql.SQLException: Access denied for user 'root@localhost'@'localhost' (using password: YES)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1073)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3597)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3529)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:935)
at com.mysql.jdbc.MysqlIO.secureAuth411(MysqlIO.java:4101)
at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1300)
at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2337)
at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2370)
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2154)
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:792)
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:381)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:305)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at database.DbDemo.main(DbDemo.java:13)

我该怎么做才能解决我的问题?

10 个答案:

答案 0 :(得分:2)

而不是使用:

 String uname="root@localhost";

使用:

String url="jdbc:mysql://localhost:3306/student";
String userName="root"
String password="Hsun123"
...
try{

        Class.forName("com.mysql.jdbc.Driver").newInstance();

        Connection con=DriverManager.getConnection(url,username,password);
...

这应该有效(假设您要设置有效密码)

答案 1 :(得分:1)

嗯,同样的问题在这里。我正在使用phpmyadmin。

我必须去phpmyadmin->users->root->Edit Privileges.

然后在“Database-specific privileges”字段上,我必须为我的数据库提供权限。

在字段“Change password”上我重新输入了密码(我不知道为什么我必须这样做,也许是一个可能的错误,因为我已经有了)。

在字段“Login Information->Host”上,我将值设置为任何主机。

问题解决了。

答案 2 :(得分:1)

如果要使用Java从本地计算机连接远程mysql服务器,请执行以下步骤。

错误:java.sql.SQLException:用户'xxxxx'@'101.123.163.141'的访问被拒绝(使用密码:是)

对于远程访问,可能是cPanel或其他人为您的本地IP地址授予了远程访问。

在以上错误消息中:“ 101.123.163.141”是本地计算机IP。因此,首先我们必须在 cPanel->远程MySQL® 中进行远程访问。然后运行您的应用程序进行连接。

Class.forName("com.mysql.jdbc.Driver");  
Connection con=DriverManager.getConnection(  
    "jdbc:mysql://www.xyz.com/abc","def","ghi");  
//here abc is database name, def is username and ghi        
Statement stmt=con.createStatement();  
ResultSet rs=stmt.executeQuery("select * from employee");  
    while(rs.next())  
        System.out.println(rs.getInt(1)+" "+rs.getString(2)+"  
                      "+rs.getString(3));  
con.close();    

希望它可以解决您的问题。

谢谢

答案 3 :(得分:0)

试试这个......

String password="Hsun123"; 

而不是

String password=""; 

答案 4 :(得分:0)

对于那些患有这个问题的人

  

java.sql.SQLException:对用户'root'@'localhost'

拒绝访问

(使用密码:是)

解决方法是:

您在代码中的此行提供的密码

Connection con=DriverManager.getConnection( 
            "jdbc:mysql://localhost:3306/Pravin","root","password"); 

无需提供此密码,只需插入""

即可

完整代码是:

import java.sql.*;  
class TestDB{  
    public static void main(String args[]){  
    try{  
        Class.forName("com.mysql.jdbc.Driver");  
        Connection con=DriverManager.getConnection(         "jdbc:mysql://localhost:3306/Pravin","root","");  
        //here sonoo is database name, root is username and password  
        Statement stmt=con.createStatement();  
        ResultSet rs=stmt.executeQuery("select * from student");  
        while(rs.next())  
            System.out.println(rs.getInt(1)+"  "+rs.getString(2)+" "+rs.getString(3));  
        con.close();  
    }catch(Exception e){
        System.out.println(e);  
    }  
}  

答案 5 :(得分:0)

确保数据库中存在具有正确密码的特权(即必要权限)用户帐户。或根本不创建密码

答案 6 :(得分:0)

问题由声明连接参数的顺序引起。真实顺序表示Driverconnection stringusernamepassword

如果我们按connection stringusernamepasswordDriver的顺序声明,则应用程序将失败。

答案 7 :(得分:0)

最新答案,但是发现可以帮助其他人:)面对类似的问题,我试图从使用 Eclipse 开发的Spring Boot应用程序连接数据库。打开 Mysql命令提示符或GUI工具,然后运行以下查询。

GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY '%your_password%' WITH GRANT OPTION;

还要检查您的 TCP / IP 服务是否已启用数据库。

答案 8 :(得分:0)

在查询下面,执行已解决我的问题:

  

sudo mysql;

     

mysql> ALTER USER'root'@'localhost'与mysql_native_password标识为'password'; mysql> FLUSH PRIVILEGES'

答案 9 :(得分:0)

我对数据库myPhpAdmin的新连接器的回答:

spring.datasource.url= jdbc:mysql://localhost:8889/mydb?serverTimezone=UTC
spring.datasource.username= root
spring.datasource.password= root
spring.datasource.driver-class-name= com.mysql.cj.jdbc.Driver
spring.jpa.show-sql= false
spring.jpa.hibernate.ddl-auto= update
#spring.jpa.hibernate.ddl-auto= create
spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5Dialect
spring.main.banner-mode= off