如何使用phpmyadmin导出所有数据库

发布于 2024-11-07 15:02:58 字数 70 浏览 2 评论 0原文

可以使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

寂寞美少年 2024-11-14 15:02:59

mysqldump 是最简单的方法。我从来没有用 phpMyAdmin 这样做过。

http://dev.mysql.com/doc/refman/4.1/en /mysqldump.html

mysqldump --all-databases > backup.sql

mysqldump is the easiest way. I've never done it with phpMyAdmin.

http://dev.mysql.com/doc/refman/4.1/en/mysqldump.html

mysqldump --all-databases > backup.sql
云朵有点甜 2024-11-14 15:02:59

登录phpmyadmin后,点击导出即可。默认情况下它应该选择所有数据库。

After you log in to phpmyadmin, just click export. It should select all databases by default.

寂寞陪衬 2024-11-14 15:02:59

您可以使用 mysqldump 和 --all-databases 选项来执行此操作:

mysqldump -u username -ppassword –all-databases > dump.sql

You can do this with mysqldump and the --all-databases option:

mysqldump -u username -ppassword –all-databases > dump.sql
唠甜嗑 2024-11-14 15:02:59

Kyle Brost 的解决方案只是为我导出一个当前数据库

顺便说一句,我找到了 此链接 并获得了可能对您有帮助的解决方案:

mysqldump -u root -p --all-databases > alldb_backup.sql

注意:它会要求您输入密码,如果您设置了密码,请输入密码
MySQL中的密码或直接按Enter键。

继续导出

谢谢:)

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:

mysqldump -u root -p --all-databases > alldb_backup.sql

Note: It will ask you for password, input it if you have set any
password in MySQL or Press Enter directly.

Keep Exporting

Thanks :)

摘星┃星的人 2024-11-14 15:02:59

这可以通过 mysqldump --all-databases -u 用户名 -p 密码 来完成

this can be accomplished with mysqldump --all-databases -u username -p password

冬天旳寂寞 2024-11-14 15:02:59

我尝试了这个,分三步就成功了。我得到了所有数据库转储:

在此处输入图像描述

I tried this, and it worked in 3 steps. I got all the database dumps:

enter image description here

夏了南城 2024-11-14 15:02:58

以下是使用 phpMyAdmin 导出所有 mySQL 数据库的步骤。 (2015 年 12 月)随着 phpMyAdmin 的发展,添加了新功能。

  1. 打开 phpMyAdmin 并选择数据库选项卡。检查您的所有数据库是否都列在此处。
  2. 选择“导出”选项卡,然后选择“自定义”选项卡。您不想使用默认设置
  3. 将选择所有数据库。取消选择任何您不想备份的内容。系统文件不包括在内,并且您不需要它们。
  4. 在“输出”选项下,选择“将数据库导出为单独的文件”。这会自动将下载文件更改为 ZIP,其中包含各个数据库文件。
  5. 向下移动“对象创建选项”
  6. 选择“添加DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER语句”
  7. 取消选择“AUTO_INCRMENT值”。根据数据库的结构,您可能必须选择此项。如果您不确定,请保持选中状态。
  8. 单击“开始”。将下载 ZIP 文件,您可以将其保存在安全的地方。

Here are the steps to use to export all your mySQL databases using phpMyAdmin. (Dec 2015) As phpMyAdmin evolves new features are added.

  1. Open phpMyAdmin and select the Databases tab. Check that all your databases should are listed there.
  2. Select the Export tab, and then select the Custom tab. You do not want to use the default settings
  3. All the databases will be selected. Unselect any you do not want to backup. The system files are not included, and you do not need them.
  4. Under the "Output" option, select "Export databases as separate files". This will automatically change the download file to ZIP with the individual database files in it.
  5. Move down the the "Object creation options"
  6. Select "Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER statement"
  7. Unselect the "AUTO_INCREMENT value". Depending on the structure of your databases, you might have to select this. If you are not sure, just keep it selected.
  8. Click on "Go". The ZIP file will download and you can save that in a safe place.
暮年 2024-11-14 15:02:58

如果您以根用户身份登录,您应该能够选择要备份的每个数据库,然后从那里导出它。

  1. 在 Web 浏览器中打开您的 PHPAdmin 站点。
  2. 单击“导出”选项卡
    输入图像描述这里
  3. 在导出页面上选择您要备份的数据库,或使用输入字段上方的控件选择所有数据库。
    输入图像描述此处
  4. 然后配置您想要的任何选项。我强烈建议您阅读文档,以确定您应该使用哪些选项。您可以在phpMyAdmin 文档中阅读有关选项的更多信息,
  5. 单击“转到”
    输入图像描述这里

If you login as the root user, you should be able to select every database you want to backup, then export it from there.

  1. Open your PHPAdmin site in a web browser.
  2. Click on the "Export" tab
    enter image description here
  3. On the export page select the database you wish to backup or select all using the controls above the input field.
    enter image description here
  4. Then configure any options you would like to have. I highly suggest you read the documentation to determine exactly what you options you should use. You can read more about the options in the phpMyAdmin documentation
  5. Click go
    enter image description here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文