+
95
-

centos如何安装PostgresSQL和php扩展并连接?

centos如何安装PostgresSQL和php扩展并连接?

网友回复

+
15
-

安装postgresql

1、安装rpm文件

yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

2、安装客户端

yum install postgresql10

3、安装服务端

yum install postgresql10-server

4、初始化

/usr/pgsql-10/bin/postgresql-10-setup initdb

5、设置自动启动并且启动postgresql服务

systemctl enable postgresql-10

systemctl start postgresql-10

6、使用postgres用户登录(PostgresSQL安装后会自动创建postgres用户,无密码) su - postgres

2、登录postgre...

点击查看剩余70%

+
15
-

首先安装

yum -y install postgresql-devel

然后我们到php源代码的的目录ext下,我们以php7.2.33为例,进入pdo_pgsql目录

cd pdo_pgsql
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-pgsql=/usr/pgsql-10
make && make install

我们打开php的配置文件

vim /usr/local/p...

点击查看剩余70%

我知道答案,我要回答