問題一:服務器
@ERROR: chroot failed網絡
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]socket
緣由:tcp
服務器端的目錄不存在或無權限。建立目錄並修正權限可解決問題。ide
問題二:ui
@ERROR: auth failed on module teespa
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]code
緣由:orm
服務器端該模塊(tee)須要驗證用戶名密碼,但客戶端沒有提供正確的用戶名密碼,認證失敗。提供正確的用戶名密碼解決此問題。server
問題三:
@ERROR: Unknown module ‘tee_nonexists’
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]
緣由:
服務器不存在指定模塊。提供正確的模塊名或在服務器端修改爲你要的模塊以解決問題。
問題四:
password file must not be other-accessible
continuing without password file
Password:
緣由:
這是由於rsyncd.pwd rsyncd.secrets的權限不對,應該設置爲600。如:chmod 600 rsyncd.pwd
問題五:
rsync: failed to connect to 218.107.243.2: No route to host (113)
rsync error: error in socket IO (code 10) at clientserver.c(104) [receiver=2.6.9]
緣由:
對方沒開機、防火牆阻擋、經過的網絡上有防火牆阻擋,都有可能。關閉防火牆,其實就是把tcp udp的873端口打開。
問題六:
rsync error: error starting client-server protocol (code 5) at main.c(1524) [Receiver=3.0.7]
緣由:
/etc/rsyncd.conf配置文件內容有錯誤。請正確覈對配置文件。
問題七:
rsync: chown "" failed: Invalid argument (22)
緣由:
權限沒法複製。去掉同步權限的參數便可。(這種狀況多見於Linux向Windows的時候)
問題八:
@ERROR: daemon security issue -- contact admin
rsync error: error starting client-server protocol (code 5) at main.c(1530) [sender=3.0.6]
緣由:
同步的目錄裏面有軟鏈接文件,須要服務器端的/etc/rsyncd.conf打開use chroot = yes。掠過軟鏈接文件。