由 git 编译 PgBouncer

1、安装编译过程中依赖的包:

sudo yum install libtool libevent-devel

这个过程顺便自动安装依赖包 autoconf 和 automake,视OS情况而定

2、克隆代码:

git clone git://git.postgresql.org/git/pgbouncer.git pgbouncer
cd pgbouncer

3、编译:

git submodule update --init --recursive
./autogen.sh
./configure prefix=/home/quanzl/pgsql/fxb
make
make install

4、配置:

刚刚发现了我同事写的博文《PostgreSQL Replication之第八章 与pgbouncer一起工作》。

5、补充,PgBouncer 必须指定配置文件才能运行,没有默认位置(目前看起来似乎是这样)


以后会继续写一些关于 PgBouncer 代码修改的主题


神州飞象(北京)数据科技有限公司











你可能感兴趣的:(由 git 编译 PgBouncer)