Colo-Serv Communications has written 32 articles

Premium Dedicated Hosting Services

How to Drop and Import a table in MySQL Database via Command line

In this document, we will show you how to dump a table in a particular database and restore a table from a .sql How to dump a specific table mysqldump -u [username] -p [database] [table] > this_table.sql How to restore this table to your database. mysql -u [username] -p -D [database] < this_table.sql

How to install iptables on CentOS 7

CentOS now comes with firewalld instead of iptables at the installation of your Dedicated Server. You can remove the firewalld service and install iptables to manage your firewall rules. First you need to stop and remove firewalld systemctl stop firewalld systemctl disable firewalld yum remove firewalld Now you can install iptables yum install iptables-services -y…

How to install EasyApache4 on WHM

This document explains how to install EasyApache4 on your Dedicated Server with the WHM script.   Requirements Centos 6 or 7. CloudLinux 6 or 7 (cPanel & WHM version 56 or later only). Apache and PHP EasyApache 4 only supports Apache version 2.4. EasyApache 4 supports PHP versions 5.4, 5.5, 5.6, 7.0, and 7.1.   Log…

How to Drop a MySQL Database on Linux via Command line

We will show you how to drop a database in command line on a linux server with MySQL or MariaDB installed. First you need to log your MySQL/MariaDB mysql -u root -p List all the databases MariaDB> show databases; +——————–+ | Database | +——————–+ | information_schema | | example | | mysql | | performance_schema…