Colo-Serv Communications has written 32 articles

Premium Dedicated Hosting Services

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…

How to install Softaculous on Directadmin

Softaculous is an auto installer with many scripts. You can install a WordPress or a Joomla or a forum with only one click. Softaculous is easy to install and easy to use, ideal for any webhosting company or if you manage a Dedicated Server.   Make sure to allow those IPs in your firewall api.softaculous.com…

How to Dump and Restore a Database in MySQL or MariaDB with mysqldump

In this document, we will show you how to dump a database with mysqldump and restore it. How to dump the database mysqldump -u [username] -p [database] > this_database.sql Restore procedure If the Database exist, drop the database first. mysql -u root -p MariaDB> DROP DATABSE this_database; exit You need now to create the empty…