Linux/SimpleBashBackup: Difference between revisions
Appearance
< Linux
No edit summary |
|||
| (8 intermediate revisions by the same user not shown) | |||
| Line 39: | Line 39: | ||
tar -c /srv/www | 7z a -m0=lzma2 -mx9 -si $ARCHIV | tar -c /srv/www | 7z a -m0=lzma2 -mx9 -si $ARCHIV | ||
</pre> | </pre> | ||
=== multiple folders === | === multiple files/folders === | ||
=== | <pre> | ||
CURDIR=$(pwd) | |||
ARCHIV="$BACKUPDIR/${FILEDESC}_hostname_srv.tar.gz | |||
INCLUDE="--files-from=$CURDIR/backup_srv.include" | |||
EXCLUDE="--exclude-from=$CURDIR/backup_srv.exclude" | |||
tar $EXCLUDE -c $INCLUDE | pigz --best > $ARCHIV | |||
</pre> | |||
=== remove old backups, keep new backups === | |||
<pre> | <pre> | ||
KEEP="4" | KEEP="4" | ||
| Line 48: | Line 56: | ||
</pre> | </pre> | ||
=== rsync backup files to other server === | === rsync backup files to other ssh server === | ||
<pre> | <pre> | ||
rsync -avz -e ssh $BACKUPDIR username@hostnameoftarget:/srv/backup-data/targetfolder | rsync -avz -e ssh $BACKUPDIR username@hostnameoftarget:/srv/backup-data/targetfolder | ||
</pre> | </pre> | ||
=== | === rsync backup from local to samba share === | ||
* /root/.smb_cred | * /root/.smb_cred | ||
<pre> | <pre> | ||
| Line 59: | Line 67: | ||
password=password1234 | password=password1234 | ||
</pre> | </pre> | ||
* 70_mountcifs.job: | |||
<pre> | <pre> | ||
mount -t cifs -o credentials=/root/.smb_cred //sambaserver/sambashare /mnt/localmountpoint | mount -t cifs -o credentials=/root/.smb_cred //sambaserver/sambashare /mnt/localmountpoint | ||
</pre> | </pre> | ||
* 71_remotesync.job: | |||
<pre> | |||
rsync -avz -P /srv/somelocalfolder /mnt/localmountpoint/destinationfolder | |||
</pre> | |||
* 73_unmountcifs.job: | |||
<pre> | <pre> | ||
umount -l /mnt/localmountpoint | umount -l /mnt/localmountpoint | ||
</pre> | </pre> | ||
=== mysql databases === | |||
[[Category:Linux/Bash]] | |||
[[Category:Linux]] | |||
Latest revision as of 13:53, 1 April 2017
default folder structure
/srv
/backup
/backupmanager.sh
/01_daily-jobs
/02_weekly-jobs
/03_monthly-jobs
/templates
/tmp
/backup-data
/01_daily
/02_weekly
/03_monthly
backupmanager.sh
example jobs
- each job file needs to be located in one of the job folders (01_daily-jobs, 02_weekly-jobs, 03_monthly-jobs)
- each job file needs to end in .job
- the following variables are passed on from the main script
- BACKUPDIR -> path where the backupfile should be placed (e.g. /srv/backup-data/01_daily/2016-05-23)
- FILEDESC -> datecode to be used in the filename
- TEMPDIR -> can optionally be used for temp files
single folder
weak compression
ARCHIV="$BACKUPDIR/${FILEDESC}_server_srv_www.tar.gz"
tar -c /srv/www | pigz --best > $ARCHIV
strong compression
ARCHIV="$BACKUPDIR/${FILEDESC}_server_srv_www.tar.7z"
tar -c /srv/www | 7z a -m0=lzma2 -mx9 -si $ARCHIV
multiple files/folders
CURDIR=$(pwd)
ARCHIV="$BACKUPDIR/${FILEDESC}_hostname_srv.tar.gz
INCLUDE="--files-from=$CURDIR/backup_srv.include"
EXCLUDE="--exclude-from=$CURDIR/backup_srv.exclude"
tar $EXCLUDE -c $INCLUDE | pigz --best > $ARCHIV
remove old backups, keep new backups
KEEP="4"
cd $BACKUPDIR
cd ..
ls -r | sed -e 1,${KEEP}d | xargs rm -r
rsync backup files to other ssh server
rsync -avz -e ssh $BACKUPDIR username@hostnameoftarget:/srv/backup-data/targetfolder
- /root/.smb_cred
username=testuser password=password1234
- 70_mountcifs.job:
mount -t cifs -o credentials=/root/.smb_cred //sambaserver/sambashare /mnt/localmountpoint
- 71_remotesync.job:
rsync -avz -P /srv/somelocalfolder /mnt/localmountpoint/destinationfolder
- 73_unmountcifs.job:
umount -l /mnt/localmountpoint