How to Install PHP 7.2, Apache 2.4, MySQL 5.6 on CentOS/RHEL 7.4 & 6.9

Step 1 – Setup Yum Repository

In the first step install all the required yum repositories in your system used in the remaining tutorial for various installations. You are adding REMI, EPEL, Webtatic & MySQL community server repositories in your system.

CentOS / RHEL 7

yum install epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
rpm -Uvh http://repo.mysql.com/mysql-community-release-el7-7.noarch.rpm

CentOS / RHEL 6

yum install epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -Uvh http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm

Step 2 – Install PHP 7.2

Now install php 7 packages from webtatic rpm repository using following command.

yum --enablerepo=remi-php72 install php

Now install required php modules. Use following command to list available modules in yum repositories.

yum --enablerepo=remi-php72 search php

Now check all listed modules in above command and install required modules like below.

yum --enablerepo=remi-php72 install php-mysql php-xml \
php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt

Step 3 – Install Apache 2.4

Apache (HTTPD) is the most popular web server used on Linux systems. Let’s install Apache web server using following command with enabling epel and remi yum repositories.

yum --enablerepo=epel,remi install httpd

Now start httpd service and enable to start on boot using below commands.

systemctl start httpd.service
systemctl enable httpd.service

Step 4 – Install MySQL 5.6

In step 1 we already have installed required yum repository in your system. Let’s use the following command to install MySQL server on your system. If you want to install MySQL 5.7 visit this tutorial.

yum install mysql-server

Apply security on mysql and also set root user password.

systemctl start mysqld.service
mysql_secure_installation

Now restart MySQL service and enable to start on system boot.

systemctl restart mysqld.service
systemctl enable mysqld.service

Step 5 – Open Port in Firewall

Finally open firewall ports for HTTP (80) and https (443) services using the following command.

firewall-cmd --permanent --zone=public --add-service=httpfirewall-cmd --permanent --zone=public --add-service=httpsfirewall-cmd --reload

Step 6 – Check Installed Version

Let’s check the installed versions of packages on system using following commands one by one.

php -v

PHP 7.2.0 (cli) (built: Nov 28 2017 20:22:21) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2017 Zend Technologies
httpd -v

Server version: Apache/2.4.6 (CentOS)
Server built:   Nov 19 2015 21:43:13
mysql -V

mysql  Ver 14.14 Distrib 5.6.28, for Linux (x86_64) using  EditLine wrapper

Now you have successfully configured LAMP setup on your CentOS / RHEL 7.4 & 6.9 systems.

Recommended Article:

猜你喜欢

转载自blog.csdn.net/mydear_11000/article/details/80707873