Linux 下安装pgbouncer

简介:

系统环境准备

1 创建用户:
sudo groupadd postgres
sudo useradd -g postgres postgres

2 创建目录并赋权
sudo mkdir -p /opt/pgbouncer
sudo mkdir -p /export/pgbouncer_data
sudo chown -R postgres: /export/pgbouncer

3 安装依赖包
sudo apt-get install openssl
sudo apt-get install libssl-dev

4 安装libevent
wget http://www.monkey.org/~provos/libevent-2.0.22.tar.gz
tar -zxvf libevent-2.0.22.tar.gz
cd libevent-2.0.22
sudo ./configure --prefix=/usr
make
make install

安装pgbouncer

官网:https://pgbouncer.github.io/

1 先去官网下载pgbouncer源码安装包,下载地址:https://pgbouncer.github.io/downloads/
2 解压安装包:tar -zxvf pgbouncer-1.7.2.tar.gz
3 源码安装:
$ ./configure --prefix=/opt/pgbouncer --with-libevent=libevent-prefix
$ make
$ make install

配置文件

所有的配置文件都在/export/pgbouncer_data下

1 配置pgbouncer.ini文件
[databases]
* = host=along port=5432 user=along password=along pool_size=20

[pgbouncer]
listen_port = 6432
listen_addr = 127.0.0.1
;unix_socket_dir = ''
;user = postgres
auth_type = md5
auth_file = /export/pgbouncer_data/users.txt
logfile = /export/pgbouncer_data/pgbouncer.log
pidfile = /export/pgbouncer_data/pgbouncer.pid
admin_users = postgres
stats_users = mon
pool_mode = session
client_idle_timeout=10
server_idle_timeout=1800
idle_transaction_timeout=10
client_login_timeout=10
server_reset_query = DEALLOCATE ALL;
server_check_query = select 1
server_check_delay = 10
reserve_pool_size = 5
reserve_pool_timeout = 5
max_client_conn = 50
default_pool_size = 20
log_connections = 0
log_disconnections = 0
log_pooler_errors = 1
ignore_startup_parameters = extra_float_digits

2 配置users.txt文件
-- ”用户名“ ”密码“
"along" "along"
“postgres” "postgres"

 3 配置ip_limit文件
192.0.0.0/8

4 配置环境变量
export PATH=/opt/pg10/bin:/opt/pgbouncer/bin:$PATH
source .bashrc

启动pgbouncer

postgres@along:/export/pgbouncer_data$ pgbouncer -d /export/pgbouncer_data/pgbouncer.ini 
2017-07-20 21:10:55.952 11381 LOG File descriptor limit: 1024 (H:65536), max_client_conn: 50, max fds possible: 60
2017-07-20 21:10:55.953 11381 FATAL @src/main.c:893 in function main(): unix socket is in use, cannot continue
原因:
在/tmp目录下已经有端口5432的socket
postgres@along:/export/pgbouncer_data$ ll /tmp |grep -i .s.PG
srwxrwxrwx  1 postgres postgres      0 7月  20 21:14 .s.PGSQL.5432=
-rw-------  1 postgres postgres     47 7月  20 21:14 .s.PGSQL.5432.lock

解决方法:
修改pgbouncer.ini 配置文件下的listen_port = 5432 为 6432

postgres@along:/export/pgbouncer_data$ pgbouncer -d /export/pgbouncer_data/pgbouncer.ini 
2017-07-20 21:20:56.546 11637 LOG File descriptor limit: 1024 (H:65536), max_client_conn: 50, max fds possible: 60
postgres@along:/export/pgbouncer_data$ ll /tmp |grep -i .s.PG
srwxrwxrwx  1 postgres postgres      0 7月  20 21:14 .s.PGSQL.5432=
-rw-------  1 postgres postgres     47 7月  20 21:14 .s.PGSQL.5432.lock
srwxrwxrwx  1 postgres postgres      0 7月  20 21:20 .s.PGSQL.6432=

pgbouncer启动成功

登录pgbouncer控制台

postgres@along:/export/pgbouncer_data$ psql -h 127.0.0.1 -Upostgres -p 6432 pgbouncer
Password for user postgres: 
psql (10beta1, server 1.7.2/bouncer)
Type "help" for help.

pgbouncer=#
目录
相关文章
|
3月前
|
Linux
手把手教会你安装Linux系统
手把手教会你安装Linux系统
|
1天前
|
Oracle 关系型数据库 Linux
linux8安装oracle 11g遇到的问题记录
Oracle 11g在Linux 8上安装时会遇到link编译环节的问题。官方建议忽略安装中的链接错误,安装完成后应用DBPSU 11.2.0.4.240716补丁及一次性补丁33991024,再重新编译二进制文件,并配置监听器和数据库。但因11g已退出服务期,这些补丁需付费获取。网上信息显示22年1月的PSU补丁也可解决问题,找到该补丁后按常规方式打补丁即可。如有需求或疑问可咨询我。
31 20
|
21天前
|
Linux Python
Linux 安装python3.7.6
本教程介绍在Linux系统上安装Python 3.7.6的步骤。首先使用`yum`安装依赖环境,包括zlib、openssl等开发库。接着通过`wget`下载Python 3.7.6源码包并解压。创建目标文件夹`/usr/local/python3`后,进入解压目录执行配置、编译和安装命令。最后设置软链接,使`python3`和`pip3`命令生效。
|
24天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
122 20
|
17天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
148 7
|
24天前
|
Unix Linux 编译器
UNIX/Linux 上的安装
UNIX/Linux 上的安装。
40 2
|
3月前
|
Linux 测试技术 网络安全
Linux系统之安装OneNav个人书签管理器
【10月更文挑战第19天】Linux系统之安装OneNav个人书签管理器
125 5
Linux系统之安装OneNav个人书签管理器
|
2月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
84 4
|
3月前
|
监控 Java Linux
Linux系统之安装Ward服务器监控工具
【10月更文挑战第17天】Linux系统之安装Ward服务器监控工具
79 5
Linux系统之安装Ward服务器监控工具
|
3月前
|
JSON JavaScript Linux
Linux系统之安装cook菜谱工具
【10月更文挑战第15天】Linux系统之安装cook菜谱工具
53 2
Linux系统之安装cook菜谱工具