基于 PHP 和 CRON 的 MySQL 数据库转储到电子邮件备份系统?
任何人都可以推荐一个可靠且简单的基于 PHP 的 MySQL 数据库备份系统,该系统可以在同一虚拟主机上运行,从特定数据库创建转储文件并将其作为附件发送到电子邮件地址,频率我可以调整(或取决于克罗恩)。
谢谢!
Can anyone recommend a reliable and simple PHP based MySQL database backup system that can run on the same virtualhost, creates a dump file from a specific database and sends it as an attachment to an e-mail address with frequency I can adjust (or depending on CRON).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于第一部分,您可以使用以下命令设置 CRON 作业:
将占位符替换为您的数据库名称和要转储到的文件的路径。至于电子邮件部分。我不知道。
For the first part you can set up a CRON job with this command:
replace the placeholders with your database name and the path to the file you want to dump to. As for the e-mail part. I'm not sure.