I am looking to install some server backup utility. Can CrashPlan be installed on my Ubuntu VPS?
http://www.crashplan.com/
Server Backup
Re: Server Backup
For god sake don't ruin my server set up with this crap !
The VPS providers takes HDD images once a day and support can restore them if you ask.
The VPS providers takes HDD images once a day and support can restore them if you ask.
-
- Posts: 165
- Joined: Fri May 06, 2011 5:02 pm
Re: Server Backup
I just called them. They're restoring my corrupt file. I just wish I didn't have to pay them.jacek wrote:For god sake don't ruin my server set up with this crap !
The VPS providers takes HDD images once a day and support can restore them if you ask.
Re: Server Backup
You don't have to pay do you
What corrupt file, files don't usually go corrupt unless the disk is dead.
What corrupt file, files don't usually go corrupt unless the disk is dead.
-
- Posts: 165
- Joined: Fri May 06, 2011 5:02 pm
Re: Server Backup
I do have to pay which is super lame and they told me they only do weekly backups which is extra lame...jacek wrote:You don't have to pay do you
What corrupt file, files don't usually go corrupt unless the disk is dead.
The file got corrupt at 3 AM EST because d_k_iller's computer crashed in the middle of an upload. Chopping the css file into 400 lines...
Re: Server Backup
That's not a corrupted file. That's a failed upload.
You should have had a backup locally.
If you want to have the server make a copy of the www-data folder every day you could just run
The reason you had to pay was because you were asking for management of the server, which does not come under the package you have. If it was due to a problem caused by them / their system it would have been free.
You should have had a backup locally.
If you want to have the server make a copy of the www-data folder every day you could just run
rm -R /home/www-backup && cp -R /home/www-data /home/www-backupvia a cron job once a day. To backup to an external server, I would go with rsync.
The reason you had to pay was because you were asking for management of the server, which does not come under the package you have. If it was due to a problem caused by them / their system it would have been free.
-
- Posts: 165
- Joined: Fri May 06, 2011 5:02 pm
Re: Server Backup
jacek wrote:That's not a corrupted file. That's a failed upload.
You should have had a backup locally.
If you want to have the server make a copy of the www-data folder every day you could just run
rm -R /home/www-backup && cp -R /home/www-data /home/www-backupvia a cron job once a day. To backup to an external server, I would go with rsync.
The reason you had to pay was because you were asking for management of the server, which does not come under the package you have. If it was due to a problem caused by them / their system it would have been free.
Everything you said is spot on. I've been looking into rsync, but boy would it help if I was familiar with linux and system admin stuff.