首頁  >  文章  >  資料庫  >  mysql 远程连接可以,本地连接报错_MySQL

mysql 远程连接可以,本地连接报错_MySQL

WBOY
WBOY原創
2016-06-01 13:06:281473瀏覽

使用python的MySQLdb库连接本地的mysql数据库,报错如下:


File "/usr/lib/python2.7/dist-packages/MySQLdb/__init__.py", line 81, in Connect
    return Connection(*args, **kwargs)
  File "/usr/lib/python2.7/dist-packages/MySQLdb/connections.py", line 187, in __init__
    super(Connection, self).__init__(*args, **kwargs2)
_mysql_exceptions.OperationalError: (1045, "Access denied for user 'root'@'***-vuldb.local' (using password: YES)")



解决方法:

添加'root'@'***-vuldb.local'的访问权限

          授权root用户拥有testDB数据库的所有权限(某个数据库的所有权限):

   mysql>grant all privileges on testDB.* to root@***-vuldb.localhost identified by '1234';

   mysql>flush privileges;//刷新系统权限表

  格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by "密码"; 


参考:http://www.cnblogs.com/fly1988happy/archive/2011/12/15/2288554.html

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn