CentOS - 降级到稳定的 PHP 版本

CentOS - 降级到稳定的 PHP 版本

我正在运行 CentOS 并使用 PHP 的 remi 存储库。

我刚刚发现我正在使用 PHP 的开发版本,即使我需要稳定版本:

PHP 5.3.4-dev (cli) (built: Oct  3 2010 10:57:19)

我认为这是因为我的 /etc/yum.repos.d/remi.repo 的内容是:

[remi]
name=Les RPM de remi pour Enterprise Linux 5 - $basearch
baseurl=http://rpms.famillecollet.com/el5.$basearch/
        http://iut-info.univ-reims.fr/remirpms/el5.$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
failovermethod=priority

[remi-test]
name=Les RPM de remi en test pour Enterprise Linux $releasever - $basearch
baseurl=http://rpms.famillecollet.com/test-el5.$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

我的意思是,我离开了[remi-test]部分。

如何降级到 PHP 的最新稳定版本(5.3.3)?

我尝试评论 [remi-test] 部分并运行,yum update php但出现以下消息:

No Packages marked for Update

请问有人知道怎么做吗?

谢谢,

答案1

你只需要通过 YUM 删除 php 包

yum erase php-etc.etc.etc

所以你的系统没有 php... 那么只需安装标准的..

你可以通过

yum search php

答案2

禁用 [remi-test],然后安装yum-allowdowngrade并使用其功能来降级您的php和相关软件包。

相关内容