たくろぐ!

世界一のチラ裏

Python3.6.4でMySQLに接続する

つまづいたところ

エラー内容

sudo mysql.server start ERROR! The server quit without updating PID file (/usr/local/var/mysql/3a****1.local.pid) もしくは ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) →MySQLが起動していない

$ python manage.py runserver django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you install mysqlclient? →モジュールが足りない、以下をインストール $ pip install MySQL-Python

$ python manage.py runserver django.db.utils.OperationalError: (1045, "Access denied for user 'root'@'localhost' (using password: YES)") →MySQLのpasswordが違う