jaymc Posted September 28, 2008 Share Posted September 28, 2008 I have 2 servers Server 1 = Database and application code (php) (100GB) Server 2 = File server for static files such as images and large files (2TB) I have no issue backing up Server 1 as its only around 10GB of data so I just gzip and xfer to Server 2 However, Server 2 is using 600GB of data so I cant xfer a backup to Server 1 I dont really want to add a Server 3 into the mix as these are all colocated hence $$$. My question is, do you think I can get away with adding another drive to Server 2 used soley for backup? I want to protect myself from data loss e.g. hard drive blow out. The problem with that though is if anything physically happens to Server 2 it could kill 2 drives Am I being over careful? The data isnt FBI or anything but data loss would not be good, trust me If So... Would anyone reccomend using the likes of rsync to backup so it only copies new/updated files as the IO to gzip or do a flat copy of 600TB would not be nice either Quote Link to comment https://forums.phpfreaks.com/topic/126159-solved-backup/ Share on other sites More sharing options...
Daniel0 Posted September 28, 2008 Share Posted September 28, 2008 You want a backup solution, but you don't want to pay extra money. Hmmkay... Quote Link to comment https://forums.phpfreaks.com/topic/126159-solved-backup/#findComment-652341 Share on other sites More sharing options...
jaymc Posted September 28, 2008 Author Share Posted September 28, 2008 If I dont need to pay extra money, why would I Hence, asking the question.. is what I have suggested good enough Quote Link to comment https://forums.phpfreaks.com/topic/126159-solved-backup/#findComment-652397 Share on other sites More sharing options...
steviewdr Posted September 28, 2008 Share Posted September 28, 2008 I want to protect myself from data loss e.g. hard drive blow out. Would anyone reccomend using the likes of rsync to backup so it only copies new/updated files as the IO to gzip or do a flat copy of 600TB would not be nice either 1. If you want to protect against hardware failure, then you need to have raid. I.e. raid1 or raid5. I personally use raid1 and then lvm. 2. Yes - I would use rsync for only copying the modified files. While raid1 (etc) protects against hardware failure, if you want to protect against someone deleting the files then you will have to look to something else. You could look into using LVM snapshots (google away). 2TB aint that much TBH. You can get a 1TB external usb drive for €100. -steve Quote Link to comment https://forums.phpfreaks.com/topic/126159-solved-backup/#findComment-652438 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.