我有一台 Centos 7 开发服务器,当前正在运行该服务器用于测试。它安装了 PHP 7.1.19 ,mariadb,Jasper服务器和tomcat。
但是现在,我需要安装 Postgres数据库服务器(PgSql)。我整天只是在寻找解决方案,但都失败了。
默认(相同版本)的Centos 7随附了PHP 5.4.16和php-pgsql 5.4.16。我已经升级了PHP版本。我只关注MySql,因为到目前为止,对PgSql都没有要求。
从回购中:
[root@localhost a]# yum info php-pgsql
Loaded plugins: fastestmirror, remove-with-leaves
Loading mirror speeds from cached hostfile
* base: centos.exabytes.com.my
* epel: del-repos.extreme-ix.org
* extras: centos.exabytes.com.my
* updates: centos.biz.net.id
Available Packages
Name : php-pgsql
Arch : x86_64
Version : 5.4.16
Release : 45.el7
Size : 86 k
Repo : base/7/x86_64
Summary : A PostgreSQL database module for PHP
URL : http://www.php.net/
License : PHP
Description : The php-pgsql add PostgreSQL database support to PHP.
: PostgreSQL is an object-relational database management
: system that supports almost all SQL constructs. PHP is an
: HTML-embedded scripting language. If you need back-end support for
: PostgreSQL, you should install this package in addition to the main
: php package.
现在的问题是,当我想安装php-pgsql连接器时:
yum install php-pgsql
它给了我一个错误:
[root@localhost ~]# yum install php-pgsql --skip-broken
Loaded plugins: fastestmirror, remove-with-leaves
Loading mirror speeds from cached hostfile
* base: centos.exabytes.com.my
* epel: del-repos.extreme-ix.org
* extras: centos.exabytes.com.my
* updates: centos.biz.net.id
Resolving Dependencies
--> Running transaction check
---> Package php-pgsql.x86_64 0:5.4.16-45.el7 will be installed
--> Processing Dependency: php-pdo(x86-64) = 5.4.16-45.el7 for package: php-pgsql-5.4.16-45.el7.x86_64
Packages skipped because of dependency problems:
php-pgsql-5.4.16-45.el7.x86_64 from base
这一定是PHP(较高版本)和php-pgsql(较低版本)之间的版本冲突。
没有此驱动程序,我的phpinfo()没有pdo-pgsql部分
是否有人曾经有过相同的经历,可能会有所帮助并与我分享知识。
注意:我正在完全编码,只是对服务器有基本了解
谢谢