Difference between revisions of "Instalasi dan Konfigurasi rsync"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (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 ...) |
Onnowpurbo (talk | contribs) (→Client) |
||
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/