LINUX rsync 配置與詳解

2021-10-21 03:30:06 字數 1083 閱讀 2769

linux—rsync

rsync 官方站點

[url]

[url]

[ windows 2003 rsync 服務端 ]

rsync for windows download :

[url]

同步:伺服器端:

首先安裝該服務的最新版 rsync-2.6.8.tar.gz

安裝步驟:

1, tar zxvf rsync-2.6.8.tar.gz

2, cd rsync-2.6.8

3, ./configure –prefix= path

4, make ; make install

更改伺服器端的配置檔案

1,vi /etc/rsyncd.conf

[test]

path = /cygdrive/c/work

read only = false

transfer logging = yes

[cococmusicfiles]

path = e:/cococmusicfile/wma_music_file/ting_cococ_com_2005/0/1/9388

read only = false

transfer logging = yes

auth users = cococ_sync

secrets file = c:/my.pas

請注意只有路徑的表示方法不同

別忘了建密碼檔案,跟linux下完全一樣

客戶端:

1,建立密碼檔案(跟linux完全相同,略)

建立批處理:

c:\program files\cwrsynccl\bin\rsync -rvlhpogdts --progress–password-file=c:/my1.pas [email protected]::cococmusicfiles cygdrive/e/cococmusicfile/wma_music_file/ting_cococ_com_2005/0/1/9388

開啟計畫任務服務,執行上面內容的批處理

不管什麼平台,只要相應的按以上方法設定完就能完成同步工作。

Linux rsync命令詳解

rsync命令的工作模式 第一種 shell模式,也稱作本地模式 第二種 遠端shell模式,此時可以利用ssh協議承載其資料傳輸過程 第三種 列表模式,其工作方式與ls相似,僅列出源的內容 nv 第四種 伺服器模式,此時,rsync可以工作在守護程序,能夠接收客戶端的資料請求 在使用時,可以在客戶...

Linux Rsync安裝配置

linux rsync3.0 實用版安裝 安裝環境 linux centos 5.3 cd usr src 下 wget 二 解壓rsync tar xzf rsync 3.0.7.tar.gz cd rsync 3.0.7 configure prefix usr local rsync make...

linux rsync服務配置使用例項

系統 centos 6.6 服務端ip 192.168.220.130 客戶端ip 192.168.220.129 服務端配置 1.安裝 直接rpm包安裝,使用yum yum y install rsync 2.配置 安裝完rsync後,使沒有配置檔案的,需要自己建立配置檔案和使用者認證檔案 tou...