I have written a simple Nagios plugin that calls mysqlcheck (which checks for corrupted tables) and will give a warning if any are corrupt.
However none of my tables are corrupt now. So I'm not 100% sure that my plugin is working fine. I have a dev server that's not misson critical. How can I force one (or any) of the tables there to be corrupt so that I can test my nagios alert?
For the record the server is Ubuntu Dapper and the mysql is version 5.0
This should do it:
You could use a fuzzing tool like zzuf to fuzz a preexisting database file, e.g.
I'd suggest that a more realistic way to simulate fault would be to pull the rug out from beneath MySQL's feet while it's performing an intensive update. Issuing SIGKILL to the
mysqld
process should be sufficient. Chances are that when you restart MySQL the table(s) in question will be marked as crashed.Alternatively I'd suggest applying other people's suggestions but to the
.MYI
indec file rather than the data file.example:
perhaps a command execution that does something like the following:
Generally you can't back up the databases by copying them from /var/lib/mysql and then copying them back because they get corrupted, you have to use mysqldump instead.
So if you go into one of the folders for the database in /var/lib/mysql, ie /var/lib/mysql/myDB/ and mess with some of the files that ought to do it :-)
So I would recommend copying one of the files, editing a little with a hex editor, and copying it back.