Difference between revisions of "Backup Restore"

From PostgreSQL_wiki
Jump to: navigation, search
(hervat broken scp)
(hervat broken scp met rsync)
Line 15: Line 15:
 
=== hervat broken scp met rsync ===
 
=== hervat broken scp met rsync ===
 
root@host:/mnt# rsync -aq -e "ssh -i /home/jan/.ssh/id_rsa" * jan@server.webhuis.nl:/mnt/dev-kvm/host-data
 
root@host:/mnt# rsync -aq -e "ssh -i /home/jan/.ssh/id_rsa" * jan@server.webhuis.nl:/mnt/dev-kvm/host-data
  +
=== Backup mysql over netwerk ===
  +
mysqldump -u root -pgeheim -B wikidb | gzip -c | ssh backup.webhuis.nl "cat > /var/backup/wiki.webhuis.nl-db.gz"
 
<hr/>
 
<hr/>
 
Terug naar: [[Webhuis Support Infrastructuur]]
 
Terug naar: [[Webhuis Support Infrastructuur]]

Revision as of 23:14, 9 October 2012

rsync

rsync -qauz /media/disk/imac-mieke /mnt/webhuis-153/ 2>> /mnt/webhuis-153/imac-mieke/rsync-diskless.lo

In dit geval maakt rsync een directory imac-mieke aan onder webhuis-153.

rsync -qauz /media/disk/imac-mieke /mnt/webhuis-153/ 2>> /mnt/webhuis-153/imac-mieke/rsync-diskless.lo
rsync -qaz -e ssh /mnt/sda10/martin martin@10.68.71.30:/media/disk/ 2>> /mnt/nfs/martin/rsync-diskless.log
rsync -qaz -e ssh /home/martin /media/disk/ 2>> /media/disk/martin/rsync-diskless.log
rsync -qaz -e ssh /home/martin /media/disk/ 2>> /media/disk/martin/rsync-diskless.log

In dit geval maakt rsync onder de directory webhuis-153 alle directories onder imac-mieke aan.

hervat broken scp met rsync

root@host:/mnt# rsync -aq -e "ssh -i /home/jan/.ssh/id_rsa" * jan@server.webhuis.nl:/mnt/dev-kvm/host-data

Backup mysql over netwerk

mysqldump -u root -pgeheim -B wikidb | gzip -c | ssh backup.webhuis.nl "cat > /var/backup/wiki.webhuis.nl-db.gz"

Terug naar: Webhuis Support Infrastructuur