日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

rsync错误

發(fā)布時(shí)間:2024/10/8 编程问答 29 如意码农
生活随笔 收集整理的這篇文章主要介紹了 rsync错误 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

rsync error:No route to host

rsync服務(wù)端開(kāi)啟的iptables防火墻

   [root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

   rsync: failed to connect to 172.16.1.41: No route to host (113)

   rsync error: error in socket IO (code 10) at clientserver.c(124) [sender=3.0.6]

   異常問(wèn)題解決:

   關(guān)閉rsync服務(wù)端的防火墻服務(wù)(iptables)

   [root@backup mnt]# /etc/init.d/iptables stop

   iptables: Setting chains to policy ACCEPT: filter          [  OK  ]

   iptables: Flushing firewall rules:                         [  OK  ]

   iptables: Unloading modules:                               [  OK  ]

   [root@backup mnt]# /etc/init.d/iptables status

   iptables: Firewall is not running.

ERROR: The remote path must start with a module name not a /

 rsync客戶端執(zhí)行rsync命令錯(cuò)誤:
客戶端的錯(cuò)誤現(xiàn)象:
[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::/backup
ERROR: The remote path must start with a module name not a /
rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]
異常問(wèn)題解決:
rsync命令語(yǔ)法理解錯(cuò)誤,::/backup是錯(cuò)誤的語(yǔ)法,應(yīng)該為::backup(rsync模塊)

@ERROR: auth failed on module backup

 @ERROR: auth failed on module oldboy
客戶端的錯(cuò)誤現(xiàn)象:
[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup
Password:
@ERROR: auth failed on module backup
rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]
異常問(wèn)題解決:
1. 密碼真的輸入錯(cuò)誤,用戶名真的錯(cuò)誤
2. secrets file = /etc/rsync.password指定的密碼文件和實(shí)際密碼文件名稱不一致
3. /etc/rsync.password文件權(quán)限不是600
4. rsync_backup:123456密碼配置文件后面注意不要有空格
5. rsync客戶端密碼文件中只輸入密碼信息即可,不要輸入虛擬認(rèn)證用戶名稱

@ERROR: Unknown module 'backup'

Unknown module 'backup'   

[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

@ERROR: Unknown module 'backup'

rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]

異常問(wèn)題解決:

1. /etc/rsyncd.conf配置文件模塊名稱書(shū)寫(xiě)錯(cuò)誤

2.配置文件中網(wǎng)段限制不對(duì)

Permission denied

情況1

sync -avzP --delete /data/  rsync_backup@172.16.1.41::nfsbackup --password-file=/etc/rsync.password

sending incremental file list

./

rsync: failed to set times on "." (in nfsbackup): Operation not permitted (1)

ett.txt

         324 100%    0.00kB/s    0:00:00 (xfer#1, to-check=13/15)

ett.txt_hard_link

         324 100%  316.41kB/s    0:00:00 (xfer#2, to-check=12/15)

oldboyedu/

rsync: recv_generator: mkdir "oldboyedu" (in nfsbackup) failed: Permission denied (13)

情況2

[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

Password:

sending incremental file list

hosts

rsync: mkstemp ".hosts.5z3AOA" (in backup) failed: Permission denied (13)

sent 196 bytes  received 27 bytes  63.71 bytes/sec

total size is 349  speedup is 1.57

rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1039) [sender=3.0.6]   

   異常問(wèn)題解決:

   1. 共享目錄的屬主和屬組不正確,不是rsync

   2. 共享目錄的權(quán)限不正確,不是755

chdir failed    

[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

Password:

@ERROR: chdir failed

rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]

    異常問(wèn)題解決:

    1. 備份存儲(chǔ)目錄沒(méi)有建立

    2. 建立的備份存儲(chǔ)目錄和配置文件定義不一致

[root@backup backup]# /etc/init.d/xinetd restart

shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory

Stopping xinetd:                                           [  OK  ]

Starting xinetd: shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory

                                                           [  OK  ]

說(shuō)明:如果沒(méi)有備份存儲(chǔ)目錄,xinetd服務(wù)都不能正確啟動(dòng)

invalid uid rsync

[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

Password:

@ERROR: invalid uid rsync

rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]

    異常問(wèn)題解決:

rsync服務(wù)對(duì)應(yīng)rsync虛擬用戶不存在了

continuing without password file

客戶端已經(jīng)配置了密碼文件,但免秘鑰登錄方式,依舊需要輸入密碼

password file must not be other-accessible

[root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup --password-file=/etc/rsync.password

password file must not be other-accessible

continuing without password file

Password:

sending incremental file list

sent 26 bytes  received 8 bytes  5.23 bytes/sec

total size is 349  speedup is 10.26

    異常問(wèn)題解決:

rsync客戶端的秘鑰文件也必須是600權(quán)限

rsync客戶端連接慢問(wèn)題

錯(cuò)誤日志輸出

2017/03/08 20:14:43 [3422] params.c:Parameter() - Ignoring badly formed line in configuration file: ignore errors

2017/03/08 20:14:43 [3422] name lookup failed for 172.16.1.31: Name or service not known

2017/03/08 20:14:43 [3422] connect from UNKNOWN (172.16.1.31)

2017/03/08 20:14:43 [3422] rsync to backup/ from rsync_backup@unknown (172.16.1.31)

2017/03/08 20:14:43 [3422] receiving file list

2017/03/08 20:14:43 [3422] sent 76 bytes  received 83 bytes  total size 349

正確日志輸出

2017/03/08 20:16:45 [3443] params.c:Parameter() - Ignoring badly formed line in configuration file: ignore errors

2017/03/08 20:16:45 [3443] connect from nfs02 (172.16.1.31)

2017/03/08 20:16:45 [3443] rsync to backup/ from rsync_backup@nfs02 (172.16.1.31)

2017/03/08 20:16:45 [3443] receiving file list

2017/03/08 20:16:45 [3443] sent 76 bytes  received 83 bytes  total size 349

    異常問(wèn)題解決:

查看日志進(jìn)行分析

rsync服務(wù)沒(méi)有正確啟動(dòng)Connection refused (111)

 [root@oldboy-muban ~]#  rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

rsync: failed to connect to 172.16.1.41: Connection refused (111)

rsync error: error in socket IO (code 10) at clientserver.c(124) [sender=3.0.6]

解決 rsync服務(wù)沒(méi)開(kāi)啟

[root@oldboy-muban ~]# rsync --daemon

[root@oldboy-muban ~]# ss -lntup |grep rsync

tcp    LISTEN     0      5                     :::873                  :::*      users:(("rsync",1434,5))

tcp    LISTEN     0      5                      *:873                   *:*      users:(("rsync",1434,4))

[root@oldboy-muban ~]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup

Password:

sending incremental file list

hosts

sent 196 bytes  received 27 bytes  49.56 bytes/sec

total size is 349  speedup is 1.57

總結(jié)

以上是生活随笔為你收集整理的rsync错误的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。