两天前,我安装了RoundCube邮件脚本,用于:
PHP
Name : php
Arch : x86_64
Version : 5.3.18
Release : 1.el6.remi
MySQL
Name : mysql
Arch : x86_64
Version : 5.5.28
Release : 1.el6.remi
直到今天早上一切都很好,脚本指出Round Cube数据库有问题。我在看目录时有多奇怪:
/var/lib/mysql/roundcubemail
只有frm文件,没有任何.myd或.myi
cache.frm
cache_index.frm
cache_messages.frm
cache_thread.frm
contactgroupmembers.frm
contactgroups.frm
contacts.frm
db.opt
dictionary.frm
identities.frm
searches.frm
session.frm
users.frm
我的服务器有12个数据库,现在只有round cube db缺少.myd.myi文件。重新安装这个脚本不是问题,但我很有兴趣找出这个数据库发生了什么,并确保它不会再次发生。
mysql错误日志只有以下信息:
121117 7:38:06 [ERROR] Cannot find or open table roundcubemail/session from
the internal data dictionary of InnoDB though the .frm file for the
table exists. Maybe you have deleted and recreated InnoDB data
files but have forgotten to delete the corresponding .frm files
of InnoDB tables, or you have moved .frm files to another database?
or, the table contains indexes that this version of the engine
doesn't support.
See http://dev.mysql.com/doc/refman/5.5/en/innodb-troubleshooting.html
how you can resolve the problem.
我的问题是:有没有其他方法来跟踪这种情况并找出数据库刚刚消失的原因?
最佳答案
.myd
和.myi
文件只存在于myisam表中。
如果遵循标准的roudcube安装过程(通过v0.8.4验证),则将表设置为使用innodb存储引擎。
你把/var/lib/mysql/
下面的文件弄乱了吗?默认情况下,innodb表存储在一个文件中,在您的情况下可能/var/lib/mysql/ibdata1
。如果没有,请在my.cnf
配置文件中查找innodb_data_file_path指令。