Postgresql用户没有连接到数据库(Nginx Django Gunicorn)

Ton*_*dis 6 sql django postgresql nginx gunicorn

差不多一个月了,我一直在努力解决这个问题.每当我尝试在生产时访问我的Django Admin页面时,我都会收到以下错误:

OperationalError at /admin/login/
FATAL:  password authentication failed for user "vpusr"
FATAL:  password authentication failed for user "vpusr"
Run Code Online (Sandbox Code Playgroud)

我的production.py设置文件如下:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'vpdb',
        'USER': 'vpusr',
        'PASSWORD': os.environ["VP_DB_PASS"],
        'HOST': 'localhost',
    }
}
Run Code Online (Sandbox Code Playgroud)

注意:环境变量正常工作.即使我把普通密码硬编码在那里它也行不通.

以下是其所有者的数据库列表:

                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 vpdb      | vpusr    | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =Tc/vpusr            +
           |          |          |             |             | vpusr=CTc/vpusr
Run Code Online (Sandbox Code Playgroud)

以下是用户列表:

                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
 vpusr     | Superuser, Create DB                                       | {}
Run Code Online (Sandbox Code Playgroud)

正如您所看到的,我还尝试将超级用户和创建数据库的角色添加到vpusr,但这没有任何效果.

即使我尝试通过这样的终端连接,我得到同样的错误:

sudo -u postgres psql -U vpusr vpdb
Run Code Online (Sandbox Code Playgroud)

我仍然得到错误: psql: FATAL: Peer authentication failed for user "vpusr"

当我执行此命令时:

psql -U vpusr -h localhost vpdb
Run Code Online (Sandbox Code Playgroud)

我正确连接到psql作为vpusr.

还有一些注意事项:我确实删除了数据库,然后用户重新创建了它们.我确保密码是正确的.我在Digital Ocean的Ubuntu服务器上使用了Gunicorn,Nginx,Virtualenv,Django,Postgres.

提前感谢您花时间阅读并帮助我!

编辑: 我注意到我的应用程序迁移文件夹中没有迁移!可能是django或我的用户或postgres没有写文件的权限

编辑:注意:我将用户更改为托尼 在我的postgres日志文件中发现以下错误:

    2017-09-09 18:09:55 UTC [29909-2] LOG:  received fast shutdown request
2017-09-09 18:09:55 UTC [29909-3] LOG:  aborting any active transactions
2017-09-09 18:09:55 UTC [29914-2] LOG:  autovacuum launcher shutting down
2017-09-09 18:09:55 UTC [29911-1] LOG:  shutting down
2017-09-09 18:09:55 UTC [29911-2] LOG:  database system is shut down
2017-09-09 18:09:56 UTC [2711-1] LOG:  database system was shut down at 2017-09-09 18:09:55 UTC
2017-09-09 18:09:56 UTC [2711-2] LOG:  MultiXact member wraparound protections are now enabled
2017-09-09 18:09:56 UTC [2710-1] LOG:  database system is ready to accept connections
2017-09-09 18:09:56 UTC [2715-1] LOG:  autovacuum launcher started
2017-09-09 18:09:57 UTC [2717-1] [unknown]@[unknown] LOG:  incomplete startup packet
2017-09-09 18:10:17 UTC [2740-1] tony@vpdb LOG:  provided user name (tony) and authenticated user name (postgres) do not match
2017-09-09 18:10:17 UTC [2740-2] tony@vpdb FATAL:  Peer authentication failed for user "tony"
2017-09-09 18:10:17 UTC [2740-3] tony@vpdb DETAIL:  Connection matched pg_hba.conf line 90: "local   all             all                                     peer"
Run Code Online (Sandbox Code Playgroud)

编辑:

pg_hba.conf文件:

# Database administrative login by Unix domain socket
local   all             postgres                                peer

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     peer
# IPv4 local connections:
host    all             all             127.0.0.1/32            password
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local   replication     postgres                                peer
#host    replication     postgres        127.0.0.1/32            md5
#host    replication     postgres        ::1/128                 md5
Run Code Online (Sandbox Code Playgroud)

你能说出什么呢?

AK4*_*K47 2

PostgreSQL您的应用程序正在尝试使用密码身份验证方法进行连接,但在您的pg_hba.conf文件中,连接类型与该md5方法匹配,因此需要md5身份验证。我们可以在您的日志消息中看到这一点

2017-09-01 11:42:17 UTC [16320-1] vpusr@vpdb FATAL:  password authentication failed for user "vpusr"
2017-09-01 11:42:17 UTC [16320-2] vpusr@vpdb DETAIL:  Connection matched pg_hba.conf line 92: "host    all             all             127.0.0.1/32            md5"
Run Code Online (Sandbox Code Playgroud)

pg_hba.conf在 PostgreSQL 数据目录中找到您的文件,vim 该pg_hba.conf文件并更新该行

host    all             all             127.0.0.1/32            md5
Run Code Online (Sandbox Code Playgroud)

并将其更改为

host    all             all             127.0.0.1/32            password
Run Code Online (Sandbox Code Playgroud)

然后重新启动 PostgreSQL 服务

[root@server] service postgresql restart
Run Code Online (Sandbox Code Playgroud)

然后再次尝试进行身份验证

为了扩展您看到的其他消息,当您运行命令时: sudo -u postgres psql -U vpusr vpdb 您没有传递-h <host>参数,因此连接将尝试匹配该行

local    all             all             127.0.0.1/32            <method>
Run Code Online (Sandbox Code Playgroud)

因此您需要检查本地连接所需的身份验证方法并以这种方式进行身份验证,或者传递参数-h <host>,然后它将与您的行匹配

host    all             all             127.0.0.1/32            password
Run Code Online (Sandbox Code Playgroud)

这意味着您可以在出现提示时输入密码,或者将连接字符串更改为

sudo -u postgres -c "PGPASSWORD=<password>;psql -h localhost -U vpusr vpdb"
Run Code Online (Sandbox Code Playgroud)