简体   繁体   English

在CentOS 6.7上从php 5.5.x升级到5.6.x.

[英]Upgrading from php 5.5.x to 5.6.x on CentOS 6.7

I've looked around for this topic, but all of the questions related to upgrading php on centOS seem to be pretty outdated. 我一直在寻找这个话题,但是所有与升级php on centOS相关的问题似乎都已经过时了。 I found https://www.zerostopbits.com/how-to-upgrade-php-5-3-to-php-5-6-on-centos-6-7/ and it seems fairly simple; 我找到了https://www.zerostopbits.com/how-to-upgrade-php-5-3-to-php-5-6-on-centos-6-7/ ,看起来相当简单; however, I am not familiar with installing new repos. 但是,我不熟悉安装新的回购。

There seems to be a decent amount of repos that have the php 5.6 package I need, but I am unsure which would be considered the best or the safest. 似乎有一个相当数量的repos有我需要的PHP 5.6包,但我不确定哪个被认为是最好的或最安全的。

Also, is there any incompatibility I should be aware of since CentOS does not offer the most recent version? 此外,我是否应该注意任何不兼容性,因为CentOS不提供最新版本?

This is the easiest way that worked for me: To install PHP 5.6 on CentOS 6 or 7: 这是最适合我的方法:在CentOS 6或7上安装PHP 5.6:

CentOS 6. Enter the following commands in the order shown: CentOS 6.按所示顺序输入以下命令:

yum -y update
yum -y install epel-release
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
wget https://centos6.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath

CentOS 7. Enter the following commands in the order shown: CentOS 7.按所示顺序输入以下命令:

yum -y update
yum -y install epel-release
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
wget https://centos7.iuscommunity.org/ius-release.rpm
rpm -Uvh ius-release*.rpm
yum -y update
yum -y install php56u php56u-opcache php56u-xml php56u-mcrypt php56u-gd php56u-devel php56u-mysql php56u-intl php56u-mbstring php56u-bcmath

See how to upgrade to PHP 7 and more at: http://devdocs.magento.com/guides/v2.0/install-gde/prereq/php-centos.html 了解如何升级到PHP 7及更高版本: http //devdocs.magento.com/guides/v2.0/install-gde/prereq/php-centos.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM