安装PostgreSQL
1 |
apt-get install -y postgresql postgresql-contrib postgresql-server-dev-9.3 libpq-dev postgresql-devel |
编译PHP增加PostgreSQL扩展
1、先看下之前编译的configure命令。
1 |
php -i | grep configure |
2、配置编译参数。在上面的configure命令后面加上--with-pdo-pgsql
选项。
1 |
'./configure' '--prefix=/usr/local/gridinfo/php7' '--with-config-file-path=/usr/local/gridinfo/php7/etc' '--enable-fpm' '--with-fpm-user=www' '--with-fpm-group=www' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--with-iconv-dir' '--with-freetype-dir=/usr/local/freetype' '--with-jpeg-dir' '--with-png-dir' '--with-zlib' '--with-libxml-dir=/usr' '--enable-xml' '--disable-rpath' '--enable-bcmath' '--enable-shmop' '--enable-sysvsem' '--enable-inline-optimization' '--with-curl' '--enable-mbregex' '--enable-mbstring' '--with-mcrypt' '--enable-ftp' '--with-gd' '--enable-gd-native-ttf' '--with-openssl' '--with-mhash' '--enable-pcntl' '--enable-sockets' '--with-xmlrpc' '--enable-zip' '--enable-soap' '--with-gettext' '--disable-fileinfo' '--enable-opcache' '--with-pdo-pgsql' |
3、开始编译和安装。
1 |
make && make install |
4、安装完成后,检查PHP扩展。
1 |
php -m | grep pdo_pgsql |
输出里有pdo_pgsql,就表示PostgreSQL的扩展ok了。