370 | | In October 2013 we switched the servers filesystem to a ZFS server on the network, see ticket:593#comment:5 and now filesystem backups are done via ZFS snapshots so the rsync backup was disabled, see ticket:535#comment:22 |
| 370 | In October 2013 we switched the servers filesystem to a ZFS server on the network, see ticket:593#comment:5 and now filesystem backups are 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: |
| 371 | |
| 372 | {{{ |
| 373 | sftp tn-puffin@store1.webarch.net |
| 374 | }}} |
| 375 | |
| 376 | The latest backups are in puffin.webarch.net and 60 days worth of snapshots are in ~/.zfs/, you can mount these backups locally, for example on Debian: |
| 377 | |
| 378 | {{{ |
| 379 | aptitude install sshfs |
| 380 | mkdir -p /media/tn-puffin |
| 381 | chmod 700 /media/tn-puffin/ |
| 382 | mkdir /media/tn-puffin/latest |
| 383 | mkdir /media/tn-puffin/archive |
| 384 | echo "sshfs#tn-puffin@store1.webarch.net:puffin.webarch.net /media/tn-puffin/latest fuse ro,nobootwait 0 0" >> /etc/fstab |
| 385 | echo "sshfs#tn-puffin@store1.webarch.net::.zfs/snapshot /media/tn-puffin/archive fuse ro 0,nobootwait 0" >> /etc/fstab |
| 386 | mount -a |
| 387 | }}} |