成功将postgreSQL 9.6.5连接到pgbouncer 1.7.2

时间:2017-10-18 01:18:47

标签: postgresql pgbouncer

问题:

我努力将pgbouncer 1.7.2连接到一个可操作的postgresql 9.6.5数据库(Django / Python网络应用程序,Ubuntu 14.04操作系统)。

你可以帮我解决这个问题吗?

背景

PostgreSQL在没有pgbouncer的情况下运行良好。我正在使用canonical guide设置pgbouncer。 DB以前是从另一台机器恢复的。

一切都在一台机器上。我正在尝试使用unix套接字连接。 Haven没有尝试TCP(但对它开放)。

数据库名为mydb。我的Django项目设置为通过用户ubuntu连接到它。

我尝试过的事情:

当我尝试psql -d mydb -p 6432 ubuntu(作为用户ubuntu)时,我得到:psql: ERROR: pgbouncer cannot connect to server

与此同时,pgbouncer.log显示:

01:39:56.428 78472 LOG C-0xfa51e0: mydb/ubuntu@unix(120837):6432 login attempt: db=mydb user=ubuntu tls=no
01:39:56.428 78472 LOG C-0xfa51e0: mydb/ubuntu@unix(120837):6432 closing because: pgbouncer cannot connect to server (age=0)
01:39:56.428 78472 WARNING C-0xfa51e0: mydb/ubuntu@unix(120837):6432 Pooler Error: pgbouncer cannot connect to server
01:40:11.428 78472 LOG S-0xfa0530: mydb/ubuntu@11.65.119.381:5432 closing because: connect failed (age=15)

请注意psql -d mydb -p 5432 ubuntu成功登录mydb(无需密码)。密码是否在这里造成问题?

如果我pgbouncer -d pgbouncer.ini(作为用户ubuntu),则会出现permission denied错误:

2017-10-15 23:34:14.325 17606 FATAL Cannot open logfile: '/var/log/postgresql/pgbouncer.log': Permission denied

pgbouncer.log中没有生成相应的日志行。文件perms设置如下:

ubuntu@ip-xxx-xx-xx-xx:/var/log/postgresql$ ls -lh
total 59M
-rw-r--r-- 1 postgres postgres 1.8M Oct 15 23:35 pgbouncer.log
-rw-r----- 1 postgres adm       57M Oct 15 23:07 postgresql-9.6-main.log

我已配置的内容:

为了记录,这里是我在Django应用程序settings.py文件中的内容:

DATABASES = {
        'default': {
                'ENGINE': 'django.db.backends.postgresql_psycopg2',
                'NAME': 'mydb', 
                'USER': 'ubuntu',
                'PASSWORD': DB_PASSWORD,
                'HOST': '/var/run/postgresql',                 
                #'PORT': '6432',
        }

如果我取消注释'PORT': '6432',它仍然无效。

Pgbouncer' pgbouncer.ini包含以下内容:

[databases]
mydb= host=11.65.119.381 port=5432 user=ubuntu dbname=mydb

logfile = /var/log/postgresql/pgbouncer.log
pidfile = /var/run/postgresql/pgbouncer.pid

; ip address or * which means all ip-s
listen_addr = *
listen_port = 6432

; unix socket is also used for -R.
; On debian it should be /var/run/postgresql
;unix_socket_mode = 0777
;unix_socket_group =
unix_socket_dir = /var/run/postgresql

auth_type = trust
auth_file = /etc/pgbouncer/userlist.txt
admin_users = myuser, postgres, root
stats_users = myuser, postgres, root

auth_type设置为any也无效。

/etc/pgbouncer/userlist.txt包含:

"ubuntu" "md565j6e98u1z098oiuyt7543poi4561yh3"

我通过SELECT usename, passwd FROM pg_shadow WHERE usename='ubuntu';获取密码字符串。请注意,这与Django DB_PASSWORD中引用的settings.py不同(我在userlist.txt中也未成功尝试过。)

pg_hba.conf包含:

local   all             postgres                                peer

# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 md5

postgresql.conf包含:

listen_addresses = '*'
port = 5432 
unix_socket_directories = '/var/run/postgresql'
#unix_socket_group = ''                 # (change requires restart)
#unix_socket_permissions = 0777         # begin with 0 to use octal notation

文件烫发:

/var/run/postgresql/包含:

total 8.0K
drwxr-s--- 2 postgres postgres 120 Oct 16 00:06 9.6-main.pg_stat_tmp
-rw-r--r-- 1 postgres postgres   6 Oct 15 13:23 9.6-main.pid
-rw-r--r-- 1 postgres postgres   6 Oct 15 23:23 pgbouncer.pid

1 个答案:

答案 0 :(得分:1)

如果您通过Unix套接字成功连接到Postgres,您可以通过将主机指定为套接字文件所在的目录(通常是/ tmp,如果您自己编译它),告诉pgbouncer也这样做。发行版把它放在各个地方。

所以在你的pgbouncer.ini中尝试这样的事情:

[databases]
mydb= host=/tmp dbname=mydb

当pgbouncer以用户ubuntu(在您的情况下)运行时,您可能不需要设置用户名,并且您正在使用默认端口号,因此您无需明确设置它。

在Postgres中,做

show unix_socket_directories;

查看实际套接字目录的位置。