有没有可以进行完全远程备份的脚本?
可能的重复:
备份 php 站点和 mysql 数据库的建议 < /p>
是有没有任何php脚本可以进行文件系统备份和数据库备份(最好将它们压缩在一起)并将备份发送到远程服务器?
Possible Duplicate:
Suggestions for backing up php site and mysql db
Is there any php script that can do file system backup and database backup (preferably zip them together) and send the backup to a remote server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
linux 命令对此有更好的工具。您可以使用 PHP exec() 函数访问 Linux 命令。像这样的事情:
您将需要检查 linux 命令选项,然后在安全的环境中进行测试和调整。然后您可以将文件通过 ftp 或电子邮件发送到任何地方。或者你可以将相同的东西放入 cron 作业中。
linux commands have better tools for this. you can access linux commands using the PHP exec() function. something like this:
you will want to check the linux command options, then test and tweak in a safe environment. you can then ftp or email the files to wherever. or you could put the same stuff in a cron job.