Difference between revisions of "Instalasi dan Konfigurasi rsync"

From OnnoWiki
Jump to navigation Jump to search
(New page: Install rsync # apt-get install rsync ==Server== Edit # vi /etc/rsyncd.conf Pastikan ada pid file = /var/run/rsyncd.pid max connections = 5 use chroot = yes uid = nobody gid ...)
 
Line 47: Line 47:
  
  
# rsync -t -v source destination
+
Lakukan
 +
 
 +
# rsync -t -v source destination
 +
 
 +
 
 +
Contoh
 +
 
 +
# rsync -ur /home/tempat/data root@192.168.0.1:/home/backup/

Revision as of 12:36, 12 February 2008

Install rsync

# apt-get install rsync


Server

Edit

# vi /etc/rsyncd.conf

Pastikan ada

pid file = /var/run/rsyncd.pid
max connections = 5
use chroot = yes
uid = nobody
gid = nogroup

Share folder

[backup]
path=/folder/tempat/backup

Buat folder backup

 # mkdir /folder
 # mkdir /folder/tempat
 # mkdir /folder/tempat/backup
 # chown -Rf nobody.nogroup /folder/tempat

Aktifkan rsync daemon

# rsync --daemon

Jika perlu masukan ke rc.local

# vi /etc/rc.local

isi

rsync --daemon &


Client

Lakukan

# rsync -t -v source destination


Contoh

# rsync -ur /home/tempat/data root@192.168.0.1:/home/backup/