mysql_exceptions.OperationalError: (1045, “Access denied for user 'root'@'localhost' (using password: YES)”)

前端 未结 7 1696
长情又很酷
长情又很酷 2020-12-14 10:06

I\'ve started working with django, and here is the error on \'runserver\' after setting up \'DATABASES\' in settings.py

mysql_exceptions.OperationalError: (1         


        
相关标签:
7条回答
  • 2020-12-14 10:35

    Run in console

    mysql> grant all privileges on *.* to root@localhost identified by 'password' with grant option;
    
    0 讨论(0)
提交回复
热议问题