Incorrect information in file: './database
I'm completely lost as to how or why this error is displaying when I go to browse the table data.
The one thing I did notice was that the Storage Engine has been switched to MyISAM with InnoDB saying it has been disabled.
I'm waiting to hear back from the hosting company but is there something I can explore until I hear back from them?
The sql should have been backed up on the server but when I download it, the file is empty.
Any tips on accessing this data is very much appreciated.
Sounds like your host may have disabled InnoDB, which will make any existing InnoDB tables unusable. They may also have accidentally destroyed the InnoDB data file.
Either way, there's nothing you can do yourself to recover it.
Come to /etc/my.cnf an change config to
max_connections = 2500
query_cache_limit = 2M
query_cache_size = 150M
tmp_table_size = 200M
max_heap_table_size = 300M
key_buffer_size = 300M
tmpdir = /dev/shm
Run command: service mysqld restart
check again, Good luck
Just try to restart mysql. It helped me fix the problem
链接地址: http://www.djcxy.com/p/58430.html