Changes between Version 64 and Version 65 of PenguinServer


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

Formatting fix for PenguinServer#Backups

Legend:

Unmodified
Added
Removed
Modified
  • PenguinServer

    v64 v65  
    170170See 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 
     172{{{ 
    172173sftp tn-penguin@store1.webarch.net 
     174}}} 
    173175 
    174176The 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: 
    175177 
     178{{{ 
    176179aptitude install sshfs 
    177180mkdir -p /media/tn-penguin 
     
    182185echo "sshfs#tn-penguin@store1.webarch.net::.zfs/snapshot /media/tn-penguin/archive fuse ro 0,nobootwait 0" >> /etc/fstab 
    183186mount -a 
     187}}} 
    184188 
    185