Cent OS 5.7でのPHPバージョンアップ:5.1 → 5.2

基本的に
HowTos/PHP 5.1 To 5.2 – CentOS Wiki
のままでOKでした。

 

簡単にまとめてみると:
(1)現在インストールされた物の確認:
# rpm -qa | grep php

(2)/etc/yum.repos.d/の下に、下記内容で「CentOS-Testing.repo」という新しいリポジトリを追加します↓↓

  [c5-testing]
  name=CentOS-5 Testing
  baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
  enabled=1
  gpgcheck=1
  gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
  includepkgs=php*

(3)アップデート
# yum update

(4)念のためhttpdを再起動
# service httpd restart

 

という感じです。