Rsyncself
From CoolSolutionsWiki
-my other wikis
- How to rsync to from the same server
- How to rsync source directory to destination directory
- How to rsync to the same server
Contents |
[edit]
binary
- download Netware sp8 (do NOT use the binary off forge.novell.com...it causes abends). Once extracted you'll see products/rsync*.*
- unzip this and use this to copy sys:/rsync and sys:system to your server
[edit]
configuration
[edit]
rsyncstr.ncf AKA daemon
- rsync -v --address=10.10.10.10 --progress --port=874 --daemon --config=sys:etc/rsyncd.conf
- note I changed the port from default 873 to 874
[edit]
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=*
[edit]
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:
