如何使用phpmyadmin导出所有数据库
可以使用phpMyadmin一次性导出所有数据库吗?
如果不是,最好的方法是什么?
提前致谢。
Can I export all the databases with one-go using phpMyadmin?
If not what is the best way to do it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
mysqldump 是最简单的方法。我从来没有用 phpMyAdmin 这样做过。
http://dev.mysql.com/doc/refman/4.1/en /mysqldump.html
mysqldump is the easiest way. I've never done it with phpMyAdmin.
http://dev.mysql.com/doc/refman/4.1/en/mysqldump.html
登录phpmyadmin后,点击导出即可。默认情况下它应该选择所有数据库。
After you log in to phpmyadmin, just click export. It should select all databases by default.
您可以使用 mysqldump 和 --all-databases 选项来执行此操作:
You can do this with
mysqldump
and the--all-databases
option:Kyle Brost 的解决方案只是为我导出一个
当前数据库
。顺便说一句,我找到了 此链接 并获得了可能对您有帮助的解决方案:
继续导出
谢谢:)
Kyle Brost's Solution just exporting one
Current Database
for me.By the way I found this link and got the solution that will may helpful to you:
Keep Exporting
Thanks :)
这可以通过 mysqldump --all-databases -u 用户名 -p 密码 来完成
this can be accomplished with
mysqldump --all-databases -u username -p password
我尝试了这个,分三步就成功了。我得到了所有数据库转储:
I tried this, and it worked in 3 steps. I got all the database dumps:
以下是使用 phpMyAdmin 导出所有 mySQL 数据库的步骤。 (2015 年 12 月)随着 phpMyAdmin 的发展,添加了新功能。
Here are the steps to use to export all your mySQL databases using phpMyAdmin. (Dec 2015) As phpMyAdmin evolves new features are added.
如果您以根用户身份登录,您应该能够选择要备份的每个数据库,然后从那里导出它。
If you login as the root user, you should be able to select every database you want to backup, then export it from there.