小编典典

django test app error - 创建测试数据库时出错:创建数据库的权限被拒绝

all

当我尝试使用命令测试任何应用程序时(我在尝试使用使用此命令的结构部署 myproject 时注意到了这一点):

python manage.py test appname

我收到此错误:

Creating test database for alias 'default'...
Got an error creating the test database: permission denied to create database

Type 'yes' if you would like to try deleting the test database 'test_finance', or 'no' to cancel

syncdb命令似乎有效。我在 settings.py 中的数据库设置:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'finance',                      # Or path to database file if using sqlite3.
        'USER': 'django',                      # Not used with sqlite3.
        'PASSWORD': 'mydb123',                  # Not used with sqlite3.
        'HOST': '127.0.0.1',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}

阅读 94

收藏
2022-06-07

共1个答案

小编典典

当 Django 运行测试套件时,它会创建一个新数据库,在您的情况下是test_finance. 具有用户名的 postgres
用户django无权创建数据库,因此出现错误消息。

当您运行migrateorsyncdb时,Django 不会尝试创建finance数据库,因此您不会收到任何错误。

您可以通过在 postgres shell 中以超级用户身份运行以下命令来向 django 用户添加 createdb
权限(对此堆栈溢出答案的提示)。

=> ALTER USER django CREATEDB;

注意: 命令中使用的用户名ALTER USER <username> CREATEDB;需要与 Django
设置文件中的数据库用户匹配。在这种情况下,最初的发布者,有用户作为django上述答案。

2022-06-07