Rsyncself

From CoolSolutionsWiki

-my other wikis
  1. How to rsync to from the same server
  2. How to rsync source directory to destination directory
  3. How to rsync to the same server


Contents

binary

  1. download Netware sp8 (do NOT use the binary off forge.novell.com...it causes abends). Once extracted you'll see products/rsync*.*
    1. unzip this and use this to copy sys:/rsync and sys:system to your server

configuration

rsyncstr.ncf AKA daemon

  1. rsync -v --address=10.10.10.10 --progress --port=874 --daemon --config=sys:etc/rsyncd.conf
    1. note I changed the port from default 873 to 874

sys:/etc/rsyncd.conf server conf

uid = nobody

gid = nobody

max connections = 0

syslog facility = local5

pid file = SYS:/rsync/rsyncd.pid

log file = SYS:/rsync/rsyncd.log

motd file = SYS:/rsync/rsyncd.motd

[LAB-FS10]

path=sys:/rsync/rdata/LAB-FS10

comment=

read only=no

use chroot=no

strict modes = no

transfer logging=yes

timeout=3600

use lfs=no

hosts allow=10.10.10.10

hosts deny=*

rsyncme.ncf AKA rsync client

rsync -rav --progress /tmp/ 10.10.10.10::LAB-FS10 --port 874 --local-port=873 --log-file=sys:/rsync/rlog.log --volume=sys: