Changes between Version 63 and Version 64 of PenguinServer
- Timestamp:
- 07/23/14 15:14:16 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PenguinServer
v63 v64 166 166 167 167 168 == Backup ninja==168 == Backups == 169 169 170 See the install and configuration notes ticket:470#comment:1 and ticket:470#comment:16, on 17th November 2013 we switched the servers filesystem to a ZFS server on the network and filesystem backups are now done via ZFS snapshots so the rsync backup was disabled, see ticket:535#comment:22 170 See the install and configuration notes ticket:470#comment:1 and ticket:470#comment:16, on 17th November 2013 we switched the servers filesystem to a ZFS server on the network and filesystem backups are now done via ZFS snapshots so the rsync backup was disabled, see ticket:535#comment:22 however these backups are not available to anyone apart from the Webarchitects sysadmin so on 23rd July 2014 on ticket:763 additional backups were set up, these are done via /usr/local/bin/agile-backup, see AgileBackup and people who have had their ssh public keys added can access these backups via SFTP: 171 171 172 sftp tn-penguin@store1.webarch.net 173 174 The latest backups are in penguin.webarch.net and 60 days worth of snapshots are in ~/.zfs/, you can mount these backups locally, for example on Debian: 175 176 aptitude install sshfs 177 mkdir -p /media/tn-penguin 178 chmod 700 /media/tn-penguin/ 179 mkdir /media/tn-penguin/latest 180 mkdir /media/tn-penguin/archive 181 echo "sshfs#tn-penguin@store1.webarch.net:penguin.webarch.net /media/tn-penguin/latest fuse ro,nobootwait 0 0" >> /etc/fstab 182 echo "sshfs#tn-penguin@store1.webarch.net::.zfs/snapshot /media/tn-penguin/archive fuse ro 0,nobootwait 0" >> /etc/fstab 183 mount -a 184 185