Important cPanel Scripts

WHM/cPanel Scripts are located in /scripts/ /scripts/adddns – Adds a DNS zone. /scripts/addnetmaskips – Add the netmask 255.255.255.0 to all IPs that have no netmask. /scripts/addnobodygrp – Adds the group nobody and activates security. /scripts/addpop – Add a Pop Account. /scripts/addservlets – Add JSP support to an account (requires tomcat). /scripts/adduser – Add a user […]

See More

How to install MariaDB Server in cPanel/WHM servers?

How to install MariaDB Server in cPanel/WHM servers? And What are the advantages of using MariaDB Server ? Ans:  *  Install MariaDB Server in cPanel/WHM servers 1. Backup existing MySQL data # mysqldump –all-databases –routines –triggers > /home/db_dump/alldb.sql # service mysql stop # cp -r /var/lib/mysql/mysql /home/db_dump/ # service mysql start 2. Select MySQL version […]

See More

How to install mod_evasive in cPanel server?

install mod_evasive in cPanel server Installation steps for Apache 2.2 Download the mod_evasive source file to the server #cd /usr/local/src #wget http://www.zdziarski.com/blog/wp-content/uploads/2010/02/mod_evasive_1.10.1.tar.gz Extract the zip file that we downloaded to the server #tar -xvzf mod_evasive_1.10.1.tar.gz #cd mod_evasive To load dynamic modules to Apache, use apxs #/usr/local/apache/bin/apxs -cia mod_evasive20.c This will create an entry in the […]

See More