pycharm连接mysql时:ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password)

1.问题如下,不是密码错误的问题,而是权限的问题


ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO) 错误,即使各个信息正确并且手动能进入mysql的情况下,pycharm连接依然出错

 pycharm连接mysql时:ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password)_第1张图片

 

2.解决方法

1.进入数据库:mysql -uroot -p

2.   下面三个指令各种功能不同,这里暴力点使用第三种(实际中不要使用root)

      # 允许loaclhost主机使用root用户操作所有的数据库的数据表

         grant all privileges on *.* to 'root'@'localhost' identified by 'mysql';

      # 允许127.0.0.1主机使用root用户操作所有的数据库的数据表

         grant all privileges on *.* to 'root'@'127.0.0.1' identified by 'mysql';

      # 允许127.0.0.1主机使用root用户操作所有的数据库的数据表

         grant all privileges on *.* to 'root'@'%' identified by 'mysql';

3.刷新

         flush privileges;

至此,mysql已经可以正常连接了

 

 

 

 

 

 

 

如果你和我有共同爱好,我们可以加个好友一起交流!

 

pycharm连接mysql时:ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password)_第2张图片

 

你可能感兴趣的:(Pycharm相关)