- November 21, 2025
I moved several of my sites from shared hosting to my own cPanel VPS recently. Everything was running smoothly, the sites felt faster, and the server was barely breaking a sweat.
Then out of nowhere, at around three in the morning, the VPS hit a wall. The load average shot up, the cPanel dashboard locked itself, and I had to hard reboot the machine just to get it stable again. Not ideal when you want a quiet life.
After a bit of digging, the culprit became clear. It was not PHP. Not MySQL. Not traffic. It was cpHulk.
cpHulk is cPanel’s built-in brute force protection. It monitors login failures and blocks IPs that look suspicious. In theory, useful.
In practice, on some VPS builds it can corrupt its own internal data and get itself stuck in a restart loop. When that happens, it keeps hammering the system, drags load averages up, and causes the machine to behave as if it is under attack, even when it is not.
That is exactly what I hit.
My logs showed cpHulk repeatedly starting, failing and restarting. It never fully initialised, and it created enough system noise to cause slowdowns.
Once I saw the pattern, the fix was fairly straightforward:
/var/cpanel/hulkdWithin minutes, the server load dropped from two to almost zero and everything returned to normal. New Relic graphs confirmed the improvement straight away.
It was not an attack and it was not a broken VPS. It was one cPanel service misbehaving.

Image above: New Relic Server Monitor
On a VPS, you can protect SSH in far stronger ways:
These offer better protection than cpHulk on its own.
A few takeaways if you are running a cPanel VPS:
Since cleaning it up, my server has been running far smoother than my old shared hosting and the performance difference is night and day.
Moving to a VPS is worth it, but you do need a bit more awareness of what is happening under the hood. Once you know where to look, most issues are simple to fix.
cpHulk was the only thing slowing down my VPS. Removing the corruption made everything snappy again and now that I know the signs, I can spot it early if it ever comes back.