How to install LAMP on Centos 7
In this tutorial, we will show you how to install Apache, MySQL and PHP on CentOS 7. Requirement : CentOS 7 Dedicated Server In the first part, we install Apache Webserver. Install Apache Webserver yum install httpd -y Start and enable Apache onboot systemctl start httpd.service systemctl enable httpd.service In the…