gpt4 book ai didi

python - 如何使用 Django 连接到 PostgreSQL 数据库服务器?

转载 作者:行者123 更新时间:2023-11-30 22:02:12 27 4
gpt4 key购买 nike

我想将 Django 应用程序与 cPanel / Namecheap hosting 上的 PostgreSQL 数据库服务器连接起来。我已经安装了PostgreSQL在 Django 应用程序中使用此命令 pip install psycopg2 。并在 settings.py我用过这个代码

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dbname',
'USER': 'username',
'PASSWORD': 'password',
'HOST': 'localhost',
'PORT': '',
}

}

最佳答案

尝试以下配置

DATABASES = {
'default':{
'ENGINE':'django.db.backends.postgresql_psycopg2',
'NAME':'db_name',
'USER':'username',
'PASSWORD':'password',
'HOST':'localhost',
'POST':'5432',
'ATOMATIC_REQUESTS':True,
}
}

关于python - 如何使用 Django 连接到 PostgreSQL 数据库服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53852006/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com