Can‘t connect to local MySQL server through socket ‘/tmp/mysql.sock‘

最近在用django框架开发后端时,在运行

$python manage.py makemigrations

命令时,报了以上错误,错误显示连接mysql数据库失败,查看了mysql数据库初始化配置文件my.cnf,我的mysql.sock文件存放路径配置在了/usr/local/mysql/目录下,于是我将django的setting配置文件关于databases配置做了以下配置:

Can‘t connect to local MySQL server through socket ‘/tmp/mysql.sock‘_第1张图片

问题解决!

你可能感兴趣的:(django,mysql)