Changes between Version 63 and Version 64 of PenguinServer


Ignore:
Timestamp:
07/23/14 15:14:16 (2 years ago)
Author:
chris
Comment:

PenguinServer#Backups updated

Legend:

Unmodified
Added
Removed
Modified
  • PenguinServer

    v63 v64  
    166166 
    167167 
    168 == Backupninja == 
     168== Backups == 
    169169 
    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 
     170See 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: 
    171171 
     172sftp tn-penguin@store1.webarch.net 
     173 
     174The 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 
     176aptitude install sshfs 
     177mkdir -p /media/tn-penguin 
     178chmod 700 /media/tn-penguin/ 
     179mkdir /media/tn-penguin/latest 
     180mkdir /media/tn-penguin/archive 
     181echo "sshfs#tn-penguin@store1.webarch.net:penguin.webarch.net /media/tn-penguin/latest fuse ro,nobootwait 0 0" >> /etc/fstab 
     182echo "sshfs#tn-penguin@store1.webarch.net::.zfs/snapshot /media/tn-penguin/archive fuse ro 0,nobootwait 0" >> /etc/fstab 
     183mount -a 
     184 
     185