Lsyncd本地檔案複製到遠端機器
阿新 • • 發佈:2018-12-21
1. 設定ssh免密登入
主機A免密登入到主機B
# 登入A主機,生成金鑰對
ssh-keygen -t rsa
# 將公鑰複製到B主機
ssh-copy-id -i .ssh/id_rsa.pub [email protected]
2. 安裝lsyncd
# 安裝repo檔案
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
# 執行安裝
yum install -y lsyncd
3.設定lsyncd.conf
修改/etc/lsyncd.conf
sync { default.rsyncssh, -- rsyncssh表示遠端主機同步 delete=false, -- 檔案刪除後不執行同步 delay=0, -- 實時同步 source="/opt/apps/www", -- 原始檔 host="10.110.18.122", -- 遠端主機 targetdir="/opt/apps/www" -- 遠端主機目錄 }
4.啟動lsyncd
服務
systemctl start lsyncd