We can setup ‘Let’s Encrypt’ free SSL with your cPanel WHM server. Let’s Encrypt SSL is a free, automate, open certificate authority (CA) and run for the public’s benefit. It allows you to get browser-trust certificates for your websites at no cost which auto renew after every 90 days. No…
In WHM, ModSecurity Tools interface allows you to add and manage ModSecurity rules for your server. You need to first install ModSecurity Apache module in order to use this feature. # WHM >> Home >> Software >> EasyApache 4 OR You can install ModSecurity Apache module through below command : #…
If you have the shell access to cPanel server through SSH Key pair and you want to access WHM without knowing root password then this post will help you. With the help of “WHMAPI1” utility we can create a temporary WHM root session by using the following command : root@L3server.com…
If you are receiving above “SECURITY WARNING” warnning for CSF firewall then you can follow below steps to resolve this error. 1) Login to WHM with root user and navigate to Home >> Plugins. 2) Click on the option ‘ConfigServer Security & Firewall’. 3) A new window will open…
The default port numbers for cPanel and WHM are given below : cPanel : 2082 / 2083 (SSL) WHM : 2086 / 2087 (SSL) Please follow below steps to change the default port number to any value. # SSH to cPanel server with root user # Open “/var/cpanel/cpanel.config” file and change…
Please follow the below steps to get a list of all cPanel accounts for a specific reseller account # Login to SSH shell with root user on your cPanel & WHM server # Enter below command on shell grep $resellername /etc/trueuserowners | cut -d : -f 1 Note : Replace “resellername”…
If you want to remove old kernels for any reason you can follow below steps. First, you need to install yum-utils package on your server to clean up older kernels and configure yum not to keep too many versions. yum install yum-utils Now, check the list of kernels that you…
Forgot the password for Joomla login ? Don’t worry, we can reset the password with the below steps : # First we need to know which database is used for Joomla. So check the configuration.php file to get database details. It is located at the root directory of your Joomla…
Here are some of the best practices that you can follow to avoid email abuse on your cPanel server. # Password Strength Configuration : If you increase the password strength, you can decrease the chance that a hacker will correctly guess passwords. WHM >> Home >> Security Center >> Password…
If you want user-friendly URLs on your site and hide .php extension then this post is useful for you. Please follow below steps to hide .php file extensions : # Open .htaccess file and add below rewrite rules RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php [NC,L] Now…