Linux

在 CentOS 中將 PHP5.1.6 升級到 PHP5.3

  • May 18, 2011

在我的系統中,有 CentOS 5 和 PHP 5.1.6。我試圖將 php 更新到版本 up(5.3)

yum update php
result: No Packages marked for Update

有人有什麼建議嗎?謝謝!

我嘗試了以下選項來成功更新 PHP 5.3.4 !

對於 CentOS 5.4

rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

webtatic RPM 安裝

rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm

PHP 安裝

yum --enablerepo=webtatic install php

PHP 更新

yum --enablerepo=webtatic update php

對於 CentOS 版本 4,

wget http://download.fedora.redhat.com/pub/epel/4/i386/epel-release-4-10.noarch.rpm
wget http://rpms.famillecollet.com/el4.i386/remi-release-4-7.el4.remi.noarch.rpm
rpm -Uvh remi-release-4*.rpm epel-release-4*.rpm

cd /etc/yum.repos.d

wget http://rpms.famillecollet.com/remi-enterprise.repo
rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi


yum --enablerepo=remi list php
php.i386 5.3.2-1.el4.remi

yum --enablerepo=remi update php

我在兩個不同的系統(CentOS 5.4 和 4.7)中成功升級了 PHP 5.3.4。

引用自:https://serverfault.com/questions/219678