NOTE: The steps described below are not intended to be vendors approved fix practice. It is basically dirty hack and may lead to total MySQL data loss!
Symptoms:
MySQL log
/var/lib/mysql/hostname.err
is full of errors related to InnoDB and even pieces of core dump code
Solution:
Backup ENTIRE /var/lib/mysql directory to somewhere
innodb_force_recovery = 4 to /etc/my.cnf
mysqlcheck -A --auto-repair
mysqldump -A > dump.sql
innodb_force_recovery in /etc/my.cnf
/var/lib/mysql/ib*
find /var/lib/mysql -type f -name "*.ibd" -delete
mysql < dump.sql
In ideal conditions it will fix problems.