0

嗨,我错误地从基于 Windows XP 的 PC 中删除了我的 MySQL 数据库(该数据库用于托管使用 Xampp 包的 Wiki 服务)。现在我正在尝试恢复数据,以便我至少可以检索在 Mediawiki 包的相应表中输入的文本。

删除后,我尝试使用 Minitool 数据恢复软件恢复数据,并且能够恢复包含 .frm 文件、ib_logfile0、ib_logfile1 和 ibdata1 的主模式文件夹(存储在 C>xampp>mysql>data 下)。

现在我正在尝试恢复数据库,以便我可以进行 SQL 转储并相应地使用它。我参考了专家之前提供的一些建议。以下是链接 -

在 Windows 上恢复 MySQL InnoDB 文件

Stackoverflow 答案

但是这些对我没有多大帮助,不确定我在说明中到底遗漏了什么。最后我无法启动 MySQL 服务,它失败了,日志中出现以下错误 -

120823 12:17:04 [Note] Plugin 'FEDERATED' is disabled.
120823 12:17:04 InnoDB: The InnoDB memory heap is disabled
120823 12:17:04 InnoDB: Mutexes and rw_locks use Windows interlocked functions
120823 12:17:04 InnoDB: Compressed tables use zlib 1.2.3
120823 12:17:04 InnoDB: Initializing buffer pool, size = 16.0M
120823 12:17:04 InnoDB: Completed initialization of buffer pool
120823 12:17:04 InnoDB: highest supported file format is Barracuda.
InnoDB: No valid checkpoint found.
InnoDB: If this error appears when you are creating an InnoDB database,
InnoDB: the problem may be that during an earlier attempt you managed
InnoDB: to create the InnoDB data files, but log file creation failed.
InnoDB: If that is the case, please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.5/en/error-creating-innodb.html
120823 12:17:04 [ERROR] Plugin 'InnoDB' init function returned error.
120823 12:17:04 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
120823 12:17:04 [ERROR] Unknown/unsupported storage engine: InnoDB
120823 12:17:04 [ERROR] Aborting

从这种情况中恢复的任何帮助将不胜感激。如果需要,我愿意提供更多数据。[ MySQL Server Version 5.5, xampp-win32-1.8.0-VC9]

4

1 回答 1

4

哦,上帝终于解决了:)实际上我是一个新手,这就是为什么我无法快速解决这个问题。这是我遵循的工作流程。

  • 我安装了 MySQL 服务器的新副本。为事务数据库运行向导配置。
  • 我停止了 MySQLServices.msc
  • 然后覆盖服务器 5.5/data 文件夹中的ib* and *frm文件(在模式文件夹下)C/programdata/mysql/mysql
  • 将 my.ini 更新C/apps/mysqlinnodb_log_file_size=<actual size of iblogfile0>
  • 运行命令mysqld --defaults-file="C:/apps/mysql/my.ini" --standalone --console --innodb_force_recovery=6
  • 一旦上述完成关闭cmd.exe
  • 重新启动 MySQL 服务
  • 打开 MySQL 工作台并转储

很抱歉让大家感到困惑。再次感谢。让我知道是否有人需要明确上述步骤。

于 2012-08-23T19:26:02.500 回答