无法在 CentOS 7 上安装 phpMyAdmin
Unable to install phpMyAdmin on CentOS 7
最近我们使用 yum update -y
和 post 更新了 CentOS 7,但我们遇到了几个问题。
现在,即使在尝试安装旧版本 php56 之后,它也会给出同样的结果。
尝试在 CentOS Linux 7.7.1908 版(核心版)上安装 phpMyAdmin 时出错
[root@***** install]# yum install phpmyadmin
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.rackspace.com
* updates: mirror.fileplanet.com
Resolving Dependencies
--> Finished Dependency Resolution
Error: Package: php-pecl-zip-1.18.2-1.el7.remi.5.6.x86_64 (remi-php56)
Requires: php(api) = 20131106-64
Installed: php-common-7.4.4~RC1-1.el7.remi.x86_64 (@remi-modular-test)
php(api) = 20190902-64
Available: php-common-5.6.40-18.el7.remi.x86_64 (remi-php56)
php(api) = 20131106-64
Available: php-common-5.6.40-19.el7.remi.x86_64 (remi-php56)
php(api) = 20131106-64
Error: Package: php-pecl-zip-1.18.2-1.el7.remi.5.6.x86_64 (remi-php56)
Requires: php(zend-abi) = 20131226-64
Installed: php-common-7.4.4~RC1-1.el7.remi.x86_64 (@remi-modular-test)
你为什么要安装这个包?
为了正确安装,请遵循 Wizard instructions
顺便说一句,最新的 phpMyAdmin 版本 (5.0.2) 至少需要 PHP 版本 7.1。
为此确定了一个合适的工作解决方案,感谢 Techmint
因为我已经安装了 php7.4.4RC1,从属包应该从同一个仓库安装,而不是不同的仓库,在我的例子中 remi-php74 是正确的
步骤
yum install yum-utils
yum-config-manager --enable remi-php74
yum install php-zip -y
yum install phpMyAdmin -y
yum-utils 提供 yum-config-manager 以轻松配置 php74[=12 的默认 remi 存储库=]
最近我们使用 yum update -y
和 post 更新了 CentOS 7,但我们遇到了几个问题。
现在,即使在尝试安装旧版本 php56 之后,它也会给出同样的结果。
尝试在 CentOS Linux 7.7.1908 版(核心版)上安装 phpMyAdmin 时出错
[root@***** install]# yum install phpmyadmin
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.rackspace.com
* updates: mirror.fileplanet.com
Resolving Dependencies
--> Finished Dependency Resolution
Error: Package: php-pecl-zip-1.18.2-1.el7.remi.5.6.x86_64 (remi-php56)
Requires: php(api) = 20131106-64
Installed: php-common-7.4.4~RC1-1.el7.remi.x86_64 (@remi-modular-test)
php(api) = 20190902-64
Available: php-common-5.6.40-18.el7.remi.x86_64 (remi-php56)
php(api) = 20131106-64
Available: php-common-5.6.40-19.el7.remi.x86_64 (remi-php56)
php(api) = 20131106-64
Error: Package: php-pecl-zip-1.18.2-1.el7.remi.5.6.x86_64 (remi-php56)
Requires: php(zend-abi) = 20131226-64
Installed: php-common-7.4.4~RC1-1.el7.remi.x86_64 (@remi-modular-test)
你为什么要安装这个包?
为了正确安装,请遵循 Wizard instructions
顺便说一句,最新的 phpMyAdmin 版本 (5.0.2) 至少需要 PHP 版本 7.1。
为此确定了一个合适的工作解决方案,感谢 Techmint
因为我已经安装了 php7.4.4RC1,从属包应该从同一个仓库安装,而不是不同的仓库,在我的例子中 remi-php74 是正确的
步骤
yum install yum-utils
yum-config-manager --enable remi-php74
yum install php-zip -y
yum install phpMyAdmin -y
yum-utils 提供 yum-config-manager 以轻松配置 php74[=12 的默认 remi 存储库=]