centos6 7 yum How to Install php of Recommendations

  • 2021-07-18 09:39:33
  • OfStack

1. Check the currently installed PHP package

yum list installed | grep php

If you have installed PHP packages, remove them first


yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64

2. Add an rpm source

First, add the epel source of Alibaba Cloud


CentOS 6.X:

rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm

CentOS 7.X:

rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

If you want to delete the package installed above, reinstall it


rpm -qa | grep webstatic
rpm -e  The package searched above can be used 

3. Run yum install to install php

php5.5:


yum install php55w.x86_64 php55w-cli.x86_64 php55w-common.x86_64 php55w-gd.x86_64 php55w-ldap.x86_64 php55w-mbstring.x86_64 php55w-mcrypt.x86_64 php55w-mysql.x86_64 php55w-pdo.x86_64 php55w-fpm php55w-devel

php5.6:


yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64 php56w-fpm php56w-devel

php7.0:


yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64 php70w-fpm php70w-devel

Summarize

The above is the site to introduce you centos6-7 yum installation php method, I hope to help you!


Related articles: