rsync排除多個檔案同步

技術小胖子發表於2017-11-15

1、架構和說明

   把192.168.0.2上的檔案同步到192.168.0.3上,同時排除config.php和a.log檔案的同步。

2、通過rsync+ssh同步檔案

   (1)、首先要打通192.168.0.2到192.168.0.3上的無密碼登入的認證請參照我的另一篇部落格http://linux008.blog.51cto.com/2837805/588080

   (2)、在192.168.0.2執行下面命令

   rsync -avz –exclude config.php –exclude a.log -e ssh /data/httpd/dir root@192.168.0.3:/data/httpd/

   這樣/data/httpd/dir目錄排除了config.php a.log兩個檔案。其他檔案都會同步到192.168.0.3上。

愛慕爾商城歡迎您的光臨!
穿衣打扮  
城市物語

    本文轉自yuangang_love 51CTO部落格,原文連結:http://blog.51cto.com/linux008/592661,如需轉載請自行聯絡原作者


相關文章