How to remove IP Address from cPHulk

1. SSH to your server as root and execute mysql from command line

[root@server ~]# mysql

2. From mysql interface type as follows:

mysql> use cphulkd;
mysql> select IP, BRUTETIME from brutes order by BRUTETIME;
mysql> select IP, LOGINTIME FROM logins order by LOGINTIME;

The above commands shows the brute force login attempt with IPs and time. After that use the below command on shell and remove the IP.

mysql> delete from brutes;
mysql> delete from logins;

Now, You can login into your server via WHM/cPanel.

That’s it!!!

Post navigation

Arunlal A

Senior System Developer at Zeta. Linux lover. Traveller. Let's connect! Whether you're a seasoned DevOps pro or just starting your journey, I'm always eager to engage with like-minded individuals. Follow my blog for regular updates, connect on social media, and let's embark on this DevOps adventure together! Happy coding and deploying!

Leave a Reply

Your email address will not be published. Required fields are marked *