从 .frm、ibdata 和 ib_logfile 恢复 MySQl 数据库
我有以前版本的 MySQl 中的 .frm、ibdata 和 ib_logfile,现在我已转移到较新的版本。不幸的是,我没有安装以前的版本,所以我无法转储并导入到新的 MySQl 版本中。
请建议一些方法让这些数据库在较新的 MySQL 版本中运行。我有以前的 MSQl 所需的所有文件。
I have .frm, ibdata and ib_logfile from my previous version of MySQl and now I have shifting to a newer version. Unfortunately, I donot have the previous version installed so I cannot take the dump and import into the new MySQl version.
Please suggest some way to get these databases running in the newer MySQL version. I have all the required files from the previous MSQl.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这样做确实很危险,所以只需在文件的副本上执行此操作(并尽量使用完全相同版本的 MySQL):
It's really dangerous to do this, so just do it on a copy of the files (and try hard to use the exact same version of MySQL):
嗯,这可能看起来微不足道。但因为我已经保存了之前安装的 Program Files 中存在的整个 MySQL 文件夹。我发现我仍然可以使用该文件夹来运行以前的 MySQL 安装,无需任何更改或重新安装(看起来 MySQl 的工作方式就像 Linux 软件)。现在我使用 mysqldump 创建转储,然后将其导入到新的 MySQL 版本中。
Well, it may seem trivial. But since I had saved the entire MySQL folder present in Program Files from my previous installation. I found out that I could still use that folder to run the previous MySQL installation without any changes or reinstallation (it seems MySQl works like Linux softwares). And now I am using mysqldump to create the dump and then will import it into the new MySQL version.