Search found 11 matches

by Tommy
Mon Nov 30, 2020 8:39 pm
Forum: Hosting Control Panels
Topic: Domain has exceeded the max defers and failures per hour
Replies: 1
Views: 59374

Domain has exceeded the max defers and failures per hour

Hello Techs, How to fix the email error that is domain has exceeded the max defers and failures per hour (5/5). Can you please look at this and help me to fix this issue. Getting a bounce back with the below error Domain has exceeded the max defers and failures per hour (5/5 (100%)) allowed. Message...
by Tommy
Mon Nov 30, 2020 7:12 pm
Forum: Hosting Control Panels
Topic: How to backup database from the commandline?
Replies: 2
Views: 32386

Re: How to backup database from the commandline?

Hello Jackk,

Please use the below command for taking database backup

mysqldump database_name > database_name.sql

and also restore from backup use below command

mysql database_name < database_name.sql
by Tommy
Sun Nov 29, 2020 10:15 pm
Forum: Hosting Control Panels
Topic: From where can I check the resource usage of my account?
Replies: 1
Views: 16606

Re: From where can I check the resource usage of my account?

Hello, The resource usage of your account can be easily viewed via the “Stats” column of your cPanel main page, simply log into your cPanel and take a look at the left side column, where you should click on “Expand Stats” in order to review all the statistics for your account. Via the “Stats” column...
by Tommy
Tue Sep 22, 2020 6:59 pm
Forum: Hosting Control Panels
Topic: How to backup and restore cPanel accounts via command line
Replies: 1
Views: 19019

Re: How to backup and restore cPanel accounts via command line

Hello Jackk, * To create a backup of individual cPanel account on the command line please follow the below steps Step1 - Login to SSH as the root user Step2 - Enter the below command on the commandline interface /scripts/pkgacct username step3 - A backup of your account will be created and stored in...
by Tommy
Mon Sep 21, 2020 6:26 pm
Forum: Hosting Control Panels
Topic: How to view bandwidth usage in WHM?
Replies: 1
Views: 17128

Re: How to view bandwidth usage in WHM?

Hello Jackk, You can check Bandwidth usage from the WHM Administrative dashboard for the server. Step 1 - Login to WHM Step 2 - Search "Account Information" from the search box step 3 - from the available option, select "View bandwidth usage". This will bring bandwidth usage of e...
by Tommy
Sun Sep 20, 2020 7:16 pm
Forum: Hosting Control Panels
Topic: How to check PHP handler in Cpanel/Whm?
Replies: 1
Views: 17578

Re: How to check PHP handler in Cpanel/Whm?

Hello Jackk, To list the active PHP handler through command line option Login to server as root through SSH 1) To check currently used Apache PHP Handler /usr/local/cpanel/bin/rebuild_phpconf --current [root@server ~]# /usr/local/cpanel/bin/rebuild_phpconf --current DEFAULT PHP: ea-php71 ea-php56 SA...
by Tommy
Sun Sep 20, 2020 1:58 pm
Forum: Hosting Control Panels
Topic: How to check the Inode usage of my current directory?
Replies: 3
Views: 23621

Re: How to check the Inode usage of my current directory?

Hello Jackk, You can use the below command to find the inode usage of your entire account * Replace "user" with your username echo "Detailed Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\...
by Tommy
Sun Sep 20, 2020 12:01 pm
Forum: Hosting Control Panels
Topic: How to check the Inode usage of my current directory?
Replies: 3
Views: 23621

Re: How to check the Inode usage of my current directory?

Hello Jackk, Please use the below command to find the inode usage of your current working directory echo "Detailed Inodes usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "...
by Tommy
Sun Sep 20, 2020 10:44 am
Forum: Hosting Control Panels
Topic: How to check if an IP is blocked in IPTABLES
Replies: 3
Views: 24459

Re: How to check if an IP is blocked in IPTABLES

Hello Jackk,


Please use the below command to blocking back an IP address in IPTABLES


iptables -A INPUT -d [IP Address] -j DROP
by Tommy
Sun Sep 20, 2020 10:14 am
Forum: Hosting Control Panels
Topic: How to check if an IP is blocked in IPTABLES
Replies: 3
Views: 24459

Re: How to check if an IP is blocked in IPTABLES

Hello Jackk,

You can check below command to verify your IP is blocked or not in IPTABLES

iptables -L -n --line | grep [IP Address]


if IP appears as DROP or REJECT, the IP has been blocked


also you can use the below command to unblock IP


iptables -I INPUT -s [IP Address] -j ACCEPT