Advertisement
Guest User

Untitled

a guest
Feb 6th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.39 KB | None | 0 0
  1. /opt/var/log/rsnapshot # cat hourly-2012-01-20_17-00.rlog
  2. Setting locale to POSIX "C"
  3. echo 22570 > /opt/var/desiredrun/rsnapshot.pid
  4. /opt/bin/rm -rf /DataVolume/backup/hourly.5/
  5. mv /DataVolume/backup/hourly.4/ /DataVolume/backup/hourly.5/
  6. mv /DataVolume/backup/hourly.3/ /DataVolume/backup/hourly.4/
  7. mv /DataVolume/backup/hourly.2/ /DataVolume/backup/hourly.3/
  8. mv /DataVolume/backup/hourly.1/ /DataVolume/backup/hourly.2/
  9. mv /DataVolume/backup/hourly.0/ /DataVolume/backup/hourly.1/
  10. mkdir -m 0755 -p /DataVolume/backup/hourly.0/
  11. /opt/bin/rsync -av --delete --numeric-ids --relative --delete-excluded \
  12.     --exclude=Recycled/ --exclude=Trash/ --exclude=lost+found/ \
  13.     --exclude=.gvfs/ --exclude=Downloads/ --exclude=.cache/ \
  14.     --exclude=.thumbnails/ --rsh=/opt/bin/ssh \
  15.     --link-dest=/DataVolume/backup/hourly.1/lama/ simon@lama:/home/simon \
  16.     /DataVolume/backup/hourly.0/lama/
  17. ssh: connect to host lama port 22: No route to host
  18. rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
  19. rsync error: unexplained error (code 255) at io.c(601) [Receiver=3.0.8]
  20. ----------------------------------------------------------------------------
  21. rsnapshot encountered an error! The program was invoked with these options:
  22. /opt/bin/rsnapshot -V hourly
  23. ----------------------------------------------------------------------------
  24. ERROR: /opt/bin/rsync returned 255 while processing simon@lama:/home/simon/
  25. /opt/bin/rsync -av --delete --numeric-ids --relative --delete-excluded \
  26.     --exclude=Recycled/ --exclude=Trash/ --exclude=lost+found/ \
  27.     --exclude=.gvfs/ --exclude=Downloads/ --exclude=.cache/ \
  28.     --exclude=.thumbnails/ --rsh=/opt/bin/ssh \
  29.     --link-dest=/DataVolume/backup/hourly.1/zebra/ simon@zebra:/home/simon \
  30.     /DataVolume/backup/hourly.0/zebra/
  31. ssh: connect to host zebra port 22: No route to host
  32. rsync: connection unexpectedly closed (0 bytes received so far) [Receiver]
  33. rsync error: error in rsync protocol data stream (code 12) at io.c(601) [Receiver=3.0.8]
  34. ERROR: /opt/bin/rsync returned 12 while processing simon@zebra:/home/simon/
  35. WARNING: Rolling back "lama/"
  36. /opt/bin/cp -al /DataVolume/backup/hourly.1/lama \
  37.     /DataVolume/backup/hourly.0/lama
  38. WARNING: Rolling back "zebra/"
  39. /opt/bin/cp -al /DataVolume/backup/hourly.1/zebra \
  40.     /DataVolume/backup/hourly.0/zebra
  41. touch /DataVolume/backup/hourly.0/
  42. rm -f /opt/var/run/rsnapshot.pid
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement