Not sure where to post, but my hosting account was suspended due to the mysql database taking up too much of the server resources. The cerber_log table appeared to be at fault, beginning with this error:
| 115261504 | bassoons_webUser | localhost | bassoons_execCoaching | Query | 3575 | Waiting for table metadata lock | ALTER TABLE cerber_log CHANGE stamp stamp DECIMAL(14,4) NOT NULL | 0.000 |
Is this common for WP Cerber plug-in to alter the log table? This looks very suspicious to me, like hacking or a MySQL injection.
The SQL request (‘ALTER TABLE cerber_log CHANGE stamp stamp DECIMAL(14,4) NOT NULL’) is completely valid. No bad actors are involved here.
I do not see any reason why it would create difficulties for your hosting provider. Do they really count every single SQL request to a website database?
Hi, I’m having the same problem with my provider, and they have locked my client’s account. I’ve had this happen twice with two different clients. This is the database session information they sent me for the most recent lockout (db names redacted).
Seems to me that ALTER TABLE is somehow locking the log table and subsequent updates to the table are also locked. It should be possible to avoid running ALTER TABLE all the time, or at least in a racy way, to avoid the possibility of this issue. I don’t feel comfortable using WP Cerber if there is a possibility of this happening again.