我的网站、文件和/或 SQL 的备份
我需要为我使用 HostGator 托管的网站找到一个好的备份解决方案。 HostGator 仅备份文件数量少于 X 的站点。不幸的是,我已经超出了该限制,他们不再备份我的网站。
这意味着现在我没有数据库备份。我确实对计算机上的所有文件进行了备份,对此我很满意。但我需要找到一种无需手动维护即可备份数据库的解决方案。 HostGator 不提供额外的备份服务。
我的网站有 cPanel 访问权限。
有什么解决方案的建议吗?
I need to find a good backup solution for the site I have hosted with HostGator. HostGator only backs up sites with less than X number of files. Unfortunately I've exceeded that limit and they aren't backing up my site any more.
This means that right now i have no database backups. I do have backups of all the files on my computer, which I'm good with. But I need to find a solution that backs up my databases with no manual maintenance. HostGator doesn't offer additional backup services.
My site has cPanel access.
Any suggestions for solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mysqldump 是一种简单可靠的备份方法。
探索文档:
http://dev.mysql.com/doc/refman/5.1/en /mysqldump.html
如果您想将转储复制到另一台服务器上,您可以编写一个通过 ssh 复制转储的 bash 脚本。
以下是一些可能对您有帮助的链接:
http:// www.cyberciti.biz/tips/howto-copy-mysql-database-remote-server.html
http://christiank.org/wp/2010/ 12/pipe-a-gzipped-mysql-dump-over-ssh/
Mysqldump is a simple and reliable way to do backups.
Explore the documentation:
http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html
If you want to copy your dumps on another server, you can write a bash script that copies dumps over ssh.
Here are some links that may help you:
http://www.cyberciti.biz/tips/howto-copy-mysql-database-remote-server.html
http://christiank.org/wp/2010/12/pipe-a-gzipped-mysql-dump-over-ssh/