如何在应用程序运行时备份mysql数据库?
在应用程序运行时生成 mysql 备份的首选方法是什么?
我想向管理员提供功能,以便在其他管理员使用其他计算机上的同一应用程序时同时备份数据库。
处理这种情况的首选方法是什么?
What is the prefer way to generate mysql backup while application is running ?
I want to provide functionality to admin to take backup of database at the same time when other admin using the same application from other computer.
What is the prefer way to handling this scenario ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望您可以使用 mysqldump 实用程序进行备份,而无需停止数据库。 Mysqlworkbench 应用程序提供了更简单的界面来执行此操作。如果您正在寻找更高级的选项并担心事务,您可以设置复制服务器,这样您就可以在不停止主服务器的情况下进行稳定的备份。
Hopefully you can take backup using mysqldump utility without stopping the database. Mysqlworkbench application provides easier interface to do this. If you are looking for a more advanced option and worry about transaction you can set up a replicated server, so that you can take the stable backups without stopping the master server.
如果您正在使用 php 支持的网络服务器,请使用 phpMyAdmin 或任何 mySQL Dumper
if you are working on a webserver with php support use phpMyAdmin or any mySQL Dumper