How to install WordPress on CentOS 7

In this tutorials, we will explain how to install WordPress on your Linux Dedicated Server Requirements CentOS 7 Server Apache, PHP, Mysql, see our How to for LAMP Installation Create the database for WordPress mysql -u root -p create database wordpress; CREATE USER wp_user@localhost IDENTIFIED BY ‘PASSWORD’; GRANT ALL PRIVILEGES ON wordpress.* TO wp_user@localhost IDENTIFIED…

How to install MongoDB on Debian 9

In this tutorial, we will explain how to install MongoDB on your Debian 9 Dedicated Server. Update your server before the installation of MongoDB apt-get update && apt-get upgrade -y Install MongoDB apt-get install mongodb -y Commands to start/stop MongoDB systemctl start mongodb systemctl stop mongodb Check the version of MongoDB installed >mongod –version db…

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…

How to install Webmin on CentOS 7

Webmin is a web-based interface for system administration. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more. Requirement: CentOS 7 Dedicated Server This guide explain how to install Webmin on CentOS 7. Installation of Webmin You need first to install the repo of Webmin cd /etc/yum.repos.d/ nano…