CentOS 7.x Installing PHP 7.x

From Notes_Wiki
Revision as of 06:57, 25 August 2022 by Saurabh (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Home > CentOS > CentOS 7.x > System Administration > Package management > CentOS 7.x Installing PHP 7.x

To install PHP 7.x versions on CentOS 7.x use following steps:

  1. Setup repositories and packages
    yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
    yum -y install yum-utils
    yum-config-manager --enable remi-php72
    yum -y update php
    Replace remi-php72 with remi-php71 or remi-php70 if older versions are required
  2. Verify PHP version installed using
    php -v


Refer:


Home > CentOS > CentOS 7.x > System Administration > Package management > CentOS 7.x Installing PHP 7.x