User Tools

Site Tools


rsync

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
rsync [2016/10/14 14:33] – external edit 127.0.0.1rsync [2023/02/23 11:25] (current) Jan Forman
Line 1: Line 1:
 +====== RSYNC ======
 +
 +
 +====== /etc/rsyncd.conf ======
 +<code>
 +use chroot = yes
 +
 +[documents]
 +    path = /storage/public
 +    comment = Public
 +    uid = nobody
 +    gid = nobody
 +    read only = no
 +    list = yes
 +    auth users = rsyncclient
 +    secrets file = /etc/rsyncd.secrets
 +    hosts allow = 10.0.0.0/255.0.0.0
 +</code>
 +
 +====== /etc/rsyncd.secrets ======
 +<code>
 +rsyncclient:passWord
 +backup:Password
 +user:password
 +</code>
 +
 +sudo chmod 600 /etc/rsyncd.secrets
 +
 +====== Synchronize with dir ======
 +<code>rsync -avzhe ssh --delete /opt/arcgis/server/usr/directories/  root@10.160.149.26:/opt/arcgis/server/usr/directories</code>
 +
 +
 +--bwlimit=100 – limit transferring speed to 100 kB/s\\
 +--delete – delete files that are not in source directory\\
 +--remove-source-files – delete file after transfer (a.k.a moving files :)\\
 +--sparse – handle sparse files efficiently
  
rsync.txt · Last modified: 2023/02/23 11:25 by Jan Forman