Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
projects:rsyncbackup [2023/06/06 10:09] – [Purge] darronprojects:rsyncbackup [2024/07/28 11:30] (current) darron
Line 18: Line 18:
 === Install === === Install ===
  
-Whether you install on a backup server or target host, fetch scripts from repository.+Whether you install on a backup server or target host, fetch scripts from repository and install rsync.
  
 <code> <code>
 +apt install mercurial rsync
 hg clone http://hg.kewl.org/pub/rsync-backup hg clone http://hg.kewl.org/pub/rsync-backup
 </code> </code>
Line 112: Line 113:
 <code> <code>
 #! /bin/bash #! /bin/bash
-SSH="ssh -2 -p 2222 -l loginname"+SSH="ssh -2 -p 2222 -l loginname -o StrictHostKeyChecking=no"
 RSYNC_PATH="/bin/rsync" RSYNC_PATH="/bin/rsync"
 </code> </code>
Line 125: Line 126:
  
 When backing up the localhost, just use the hostname and rsync will copy files directly rather than use ssh. When backing up the localhost, just use the hostname and rsync will copy files directly rather than use ssh.
 +
 === Purge === === Purge ===
  
 After each backup operation a directory purge is performed to remove old directories. This can remove temporary data within a backup period and this should be appreciated. After each backup operation a directory purge is performed to remove old directories. This can remove temporary data within a backup period and this should be appreciated.
  
-Purging can be disabled if preferred but exists to manage the number of directories over time. A weekly backup to tape or alternate disk storage would be sensible.+Purging can be disabled if preferred but exists to manage the number of directories over time. A weekly backup to tape or external disk storage would be sensible for important data.
  
 ==Rules== ==Rules==
Line 147: Line 149:
 To disable the purge process, set the PURGE variable to "" in the config. To disable the purge process, set the PURGE variable to "" in the config.
  
 +=== Test===
 +
 +Testing can be performed on the server as user rsync by invoking the host command with one argument.
 +
 +<code>
 +sudo -s
 +/bin/su - rsync
 +./bin/host example
 +</code>
 +
 +example above will extrapolate to example.conf etc
 +
 +===CRON===
 +
 +Cron on the server is utilised to perform daily backups, a typical entry
 +is this
 +
 +<code>
 +0 3 * * * /home/rsync/bin/host >/var/log/rsync/host.log 2>&1
 +</code>
  
 === Export === === Export ===