Changes between Version 64 and Version 65 of PenguinServer
- Timestamp:
- 07/23/14 15:14:55 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PenguinServer
v64 v65 170 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 {{{ 172 173 sftp tn-penguin@store1.webarch.net 174 }}} 173 175 174 176 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 177 178 {{{ 176 179 aptitude install sshfs 177 180 mkdir -p /media/tn-penguin … … 182 185 echo "sshfs#tn-penguin@store1.webarch.net::.zfs/snapshot /media/tn-penguin/archive fuse ro 0,nobootwait 0" >> /etc/fstab 183 186 mount -a 187 }}} 184 188 185