PostgreSQL& Heroku - 无法连接到数据库

时间:2013-04-25 15:55:02

标签: django postgresql django-south

我正在尝试通过我的Django应用程序向South添加一个列,但在运行python manage.py migrate <app name>命令时不断收到以下错误:

conn = _connect(dsn, connection_factory=connection_factory, async=async)
psycopg2.OperationalError: could not translate host name "ec2-107-21-99-105.comp
ute-1.amazonaws.com" to address: Temporary failure in name resolution

有人知道为什么会这样吗?我是South和PostgreSQL数据库管理系统(Heroku使用的)的新手,所以我有点困惑。

1 个答案:

答案 0 :(得分:0)

确保您已在settings.py中定义了默认数据库,如下所示:

DATABASES = {
    'default': dj_database_url.config(default=os.environ.get('DATABASE_URL'))
}