search for: avzgorp

Displaying 2 results from an estimated 2 matches for "avzgorp".

2007 Jan 23
3
rsync doesn't update directory ownership
Hi all, Has anyone encountered this: On ServerA, I make this directory: /var/ftp/pub/userA with ownership root.root It gets rsynced to serverB with this command: rsync -avzgorp --delete -e ssh /var/ftp/pub/ root at serverB:/var/ftp/pub/ However, when I change the ownership of /var/ftp/pub/userA to userA.userA, this change is not rsync-ed to serverB. Is there any option to achieve this? Thank you very much. -- Fajar Priyanto | Reg'd Linux User #327841 | Linux tutor...
2007 Jan 17
4
OOT: Advice on failover rsync setup
...mounted on each server. The cluster is set with Master and Slave configuration (when the master is down, slave serves. and when master is up again, slaves gives up the service back to master). We thought of using rsync to synchronize the two directory on each server. B -----> A with: rsync -avzgorp -e ssh root at serverB:/var/ftp/pub/ /var/ftp/pub/ A -----> B with: rsync -avzgorp --delete -e ssh /var/ftp/pub/ root at serverB:/var/ftp/pub/ (note: using --delete) We want those command to make sure that the most current and complete /var/ftp/pub is on A and we put those command on A onl...