Hi
if you can still ssh to the server login as root and type the following at the prompt
prompt should change to mysql
Code:
mysql> use cphulkd;
you will see...database changed
Code:
mysql>BACKUP TABLE `brutes` TO '/path/to/backup/directory';
backup first!
Code:
mysql> SELECT * FROM `brutes` WHERE `IP`='xxx.xxx.xxx.xxx';
insert your IP instead xxx.xxx.xxx.xxx. Is your IP there? If so,
Code:
mysql> DELETE FROM `brutes` WHERE `IP`='xxx.xxx.xxx.xxx';
that should remove your IP from the table and you will see that in mysql reply. Finally
should return you to your usual prompt. HTH
` symbols are backticks, Above Caps Lock and Tab keys on a uk-gb keyboard, in some setups you can omit them
' symbol is the usual single quote
remember ; symbol after each line before pressing enter when you are in mysql prompt