I found that my database was corrupt and tried to make a dump to repair:
$ mysqldump mysite_blog -u myuser -p
And after a while it gave up with:
mysqldump: Can't get CREATE TABLE for table `wp_options` (Can't open file: 'wp_options.MYD'. (errno: 145))I found the solution at http://support.discusware.com/center/resources/errors/mysql145.html
$ mysql -u myuser -p mysite_blogmysql> REPAIR TABLE wp_options;That did the trick! We're back in business...