Install web-sever and MariaDB on centos7 step-by-step
Step 1: Update System Packages log into Root and follow this
sudo yum update
Step 2: Install Apache Web Server
sudo yum install httpd
Step 3: Start and Enable Apache
sudo systemctl start httpdsudo systemctl enable httpd
…