网友回复
安装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%
首先安装
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%