Knowledge Base

LAMP Stack Setup Centos 7

LAMP-StackA LAMP (Linux, Apache, MySQL, PHP) stack is a common server setup used for hosting web content. This guide shows you how to setup a LAMP stack on a CentOS 7 server or virtual machine.

1. To begin please update your system:

sudo yum update;

2. To install the required packages run:

yum install httpd mariadb-server php php-pear php-mysql;

3. Now that the required packages are installed they need to be configured.

Was this article helpful?

Related Articles