CentOS下YUM升級PHP5.1到5.2.17教程

來源:互聯網
上載者:User


網上類似的教程比較多,但是很多已經失效,或者沒用。昨天晚上用了以下這個方法,還可以,簡單 又好用。
 
 

 代碼如下 複製代碼
#cat /etc/issue

系統版本: CentOS release 5.9 (Final)
 
1. 增加yum源

 代碼如下 複製代碼

#cd /etc/yum.repos.d/
#vim test.repo

貼上如下內容:

 代碼如下 複製代碼

[utterramblings]
name=Jason's Utter Ramblings Repo
baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

儲存退出!

2. yum update php
 

 代碼如下 複製代碼
php -v
PHP 5.3.27 (cli) (built: Jul 13 2013 22:31:41)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies

也可以參考一下這個(不會英文沒有譯)


Install the extra repositories
The first step requires downloading and installing some RPM files that contain the additional repository definitions, which we'll do with the rpm command:

 代碼如下 複製代碼
sudo rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
sudo rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm

Once installed you should see some additional repository definitions under the /etc/yum.repos.d directory.

 代碼如下 複製代碼
$ ls -1 /etc/yum.repos.d/epel* /etc/yum.repos.d/webtatic.repo
/etc/yum.repos.d/epel.repo
/etc/yum.repos.d/epel-testing.repo
/etc/yum.repos.d/webtatic.repo

Enable the webtatic repository
The webtatic repository provides a variety of up-to-date packages that are useful or are a requirement for many popular web-based services.  That means it generally is not a bad idea to enable the webtatic repository by default.

First, open the /etc/yum.repos.d/webtatic.repo repository file using a text editor of your choice,

 代碼如下 複製代碼
sudo vim /etc/yum.repos.d/webtatic.repo

Edit the [webtatic] section of the file so that the enabled option is set to 1.  This will enable the remi repository.

 代碼如下 複製代碼
[webtatic]
name=Webtatic Repository $releasever - $basearch
#baseurl=http://repo.webtatic.com/yum/centos/5/$basearch/
mirrorlist=http://repo.webtatic.com/yum/centos/5/$basearch/mirrorlist
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-webtatic-andy

Installing the PHP 5.3 packages
This section will aim to install PHP 5.3 and any relevant additional modules that may be required. If you are upgrading from an older PHP version to PHP 5.3 please skip to the next section.

The following is an example of a single-shot command of the installation of PHP 5.3 and some common modules:

$ sudo yum install php php-cli php-gd php-mysql php-mbstringThe following is a sample trace output (make note of the package version and the repository):

...
Dependencies Resolved

================================================================================
 Package                 Arch       Version                  Repository    Size
================================================================================
Installing:
 php                     x86_64     5.3.20-1.w5              webtatic     1.4 M
 php-cli                 x86_64     5.3.20-1.w5              webtatic     2.6 M
 php-gd                  x86_64     5.3.20-1.w5              webtatic     108 k
 php-mbstring            x86_64     5.3.20-1.w5              webtatic     1.2 M
 php-mysql               x86_64     5.3.20-1.w5              webtatic      91 k
Installing for dependencies:
 apr                     x86_64     1.3.12-1.w5              webtatic     102 k
 apr-util                x86_64     1.3.12-1.w5              webtatic      84 k
 apr-util-ldap           x86_64     1.3.12-1.w5              webtatic      15 k
...
Transaction Summary
================================================================================
Install      26 Package(s)
Upgrade       0 Package(s)
...
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID cf4c4ff9
webtatic/gpgkey                                          | 1.6 kB     00:00    
Importing GPG key 0xCF4C4FF9 "Andy Thompson <xx@xx.com>" from /etc/pki/rpm-gpg/RPM-GPG-KEY-webtatic-andy
Is this ok [y/N]: y
...
To search for available PHP-related packages we can run the following command:

yum search php
Typically the names of php modules begin with php-. Be careful about any packages that start with php53- as these will conflict with the webtatic versions.

Once you've installed PHP and any required supporting modules, skip to the "Last Steps" section below.

Upgrading to PHP 5.3 packages
If you already have PHP installed the upgrade steps are slightly different.

Warning: Before performing this upgrade please take the time to do a full backup of your system. The upgrade should generally be straightforward, but this will depend on the existing package state of your system.

To upgrade php, run:

$ rpm -q php
php-5.1.6-27.el5_5.3
$ sudo yum upgrade php
...
Dependencies Resolved

===================================================================================
 Package                  Arch        Version                      Repository
                                                                              Size
===================================================================================
Updating:
 php                     x86_64     5.3.20-1.w5              webtatic     1.4 M
Installing for dependencies:
...

Updating for dependencies:
 php-cli                 x86_64     5.3.20-1.w5              webtatic     2.6 M
 php-gd                  x86_64     5.3.20-1.w5              webtatic     108 k
 php-mbstring            x86_64     5.3.20-1.w5              webtatic     1.2 M
 php-mysql               x86_64     5.3.20-1.w5              webtatic      91 k

Transaction Summary
===================================================================================
...

$ rpm -q php
php-5.3.20-1.w5
The above commands will check the installed PHP version then update the existing php package and any associated packages to the 5.3 version in the webtatic and epel repositories.

Last steps
At this point you should have PHP 5.3 installed using the webtatic package repository. The last thing to do is to restart apache if it is currently running so that the new PHP version is loaded.

$ sudo /etc/init.d/httpd restart
A quick confirmation from the terminal should let you check the PHP version:

$ php -v
PHP 5.3.20 (cli) (built: Dec 20 2012 18:11:02)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.