Linux - Backup
-
Doh <_>
Should have made it clear. I want to backup a Cloud at Cost VPS.....
-
@Aaron-Studer said:
Doh <_>
Should have made it clear. I want to backup a Cloud at Cost VPS.....
You could do a rsync/cron backup still. I don't think they offer anything like image/VM level backups.
-
What I would like it something that would email me the backup daily, is will not be very big, less then 10MB.
-
You don't want a backup of the entire system, I take it, and just the database?
-
If the above is correct, then this is super ultra simple. Use cron, schedule the MySQL / MariaDB backup job to run daily. Have it compress with gzip. Then mail it to you. You can do that with a single line command. Done.
-
Just anything needed to recover wordpress - all posts, etc.
-
@Aaron-Studer said:
Just anything needed to recover wordpress - all posts, etc.
Oh, you're doing Wordpress... Have you taken a look at some of the Wordpress plugins for backup?
Helpful FAQ article for Wordpress backup: http://codex.wordpress.org/WordPress_Backups
-
WordPress has handy utilities that will do that for you.
-
I've always used Rsync with cron jobs.
-
@thecreativeone91 said:
I've always used Rsync with cron jobs.
Those are definitely best for general purpose backups on Linux (or any UNIX.) Works really well.
-
I use Unitrends personally. Works really well although I want to say it's something with indexing I always have to disable because it maxes out CPU usage...
Found the link: http://support.unitrends.com/ikm/questions.php?questionid=378
-
It maxes out the CPU on the Unitrends device or on the machine being backed up? We give Unitrends all the CPU it wants on the backup machine, so it can do all of the work that it needs to do.
-
@scottalanmiller said:
It maxes out the CPU on the Unitrends device or on the machine being backed up? We give Unitrends all the CPU it wants on the backup machine, so it can do all of the work that it needs to do.
On the client being backed up. Common issue I've run into several times. The link provides an awesome walkthrough about disabling it.