notes/article/dev/php.md

27 lines
827 B
Markdown
Raw Permalink Normal View History

# php notes
## Install php on centos 6
First of all, you need to enable Remi and EPEL yum repositories on your system. Use the following command to install EPEL repository on your CentOS and Red Hat 7/6 systems
Use this command to install epel-release yum repository
```bash
yum install epel-release
```
and now execute one of the following commands as per your operating system version to install Remi repository.
```bash
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
```
Your system is prepared for the PHP installation from yum repositories. Use one of the following commands to install PHP 7.3 or PHP 7.2 or PHP 7.1 on your system based on your requirements.
```bash
yum --enablerepo=remi-php73 install php
yum --enablerepo=remi-php72 install php
yum --enablerepo=remi-php71 install php
```