How to install Let’s Encrypt on CentOS 7 with Apache

In this tutorial, we will explain how to install Let’s Encrypt SSL on CentOS 7 running Apache webserver. Requirement: CentOS 7 Server Apache webserver with a working virtual host Installation of the required packages yum install epel-release -y yum install mod-ssl -y Install the Let’s Encrypt client yum install python-certbot-apache -y Installation of the SSL…

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…