Linux   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Rsync服务常见问题大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

Rsync服务常见问题汇总讲解: ================================== 1. rsync服务端开启的iptables防火墙 【客户端的错误】 No route to host 【错误演示过程】 [[email protected] tmp]# rsync -avz /etc/hosts [email protected]::BACkup rsync: failed


Rsync服务常见问题汇总讲解:
==================================
1. rsync服务端开启的iptables防火墙
【客户端的错误
No route to host
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::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]
【异常问题解决
关闭rsync服务端的防火墙服务(iptables)
[[email protected] mnt]# /etc/init.d/iptables stop
iptables: SetTing chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
[[email protected] mnt]# /etc/init.d/iptables status
iptables: Firewall is not running.

2. rsync客户端执行rsync命令错误
【客户端的错误
The remote path must start with a module name not a /
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::/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]
【异常问题解决
rsync命令语法理解错误,::/BACkup是错误的语法,应该为::BACkup(rsync模块)

3. rsync服务认证用户失败
【客户端的错误
auth Failed on module oldboy
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::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]
【异常问题解决
1. 密码真的输入错误用户名真的错误
2. secrets file = /etc/rsync.password指定的密码文件和实际密码文件名称不一致 信息复制粘贴
3. /etc/rsync.password文件权限不是600
4. rsync_BACkup:123456 密码配置文件后面注意不要有空格
如何看出文件结尾空格信息:
方法一:在vim编辑中查看
底行模式---:set list
方法二:在cat命令中查看
[[email protected] ~]# cat -A /etc/rsync.password
rsync_BACkup:oldboy123 $
5. rsync客户端密码文件中只输入密码信息即可,不要输入虚拟认证用户名

4. rsync服务位置模块错误
【客户端的错误
UnkNown module ‘BACkup‘
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::BACkup
@ERROR: UnkNown module ‘BACkup‘
rsync error: error starTing client-server protocol (code 5) at main.c(1503) [sender=3.0.6]
【异常问题解决
1. /etc/rsyncd.conf配置文件模块名称书写错误

5. rsync服务权限阻止问题
【客户端的错误
Permission denied
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::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
@R_262_10586@l 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]
【异常问题解决
1. 备份目录的属主和属组不正确,不是rsync
2. 备份目录的权限不正确,不是755

6. rsync服务备份目录异常
【客户端的错误
chdir Failed
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::BACkup
password:
@ERROR: chdir Failed
rsync error: error starTing client-server protocol (code 5) at main.c(1503) [sender=3.0.6]
【异常问题解决
1. 备份存储目录没有建立
2. 建立的备份存储目录和配置文件定义不一致
说明:如果没有备份存储目录

7. rsync服务无效用户信息
【客户端的错误
invalid uid rsync
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::BACkup
password:
@ERROR: invalid uid rsync
rsync error: error starTing client-server protocol (code 5) at main.c(1503) [sender=3.0.6]
【异常问题解决
rsync服务对应rsync虚拟用户不存在了

8. 客户端已经配置了密码文件,但免秘钥登录方式,依旧需要输入密码
【客户端的错误
password file must not be other-accessible
错误演示过程】
[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::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
@R_262_10586@l size is 349 speedup is 10.26
【异常问题解决
rsync客户端的秘钥文件也必须是600权限

9. rsync客户端连接慢问题
错误日志信息】 名称或者域名 --- IP dns解析
错误日志输出 IP --- 名称或者域名 反向dns解析
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 [email protected] (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 @R_262_10586@l 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 nfs01 (172.16.1.31)
2017/03/08 20:16:45 [3443] rsync to BACkup/ from [email protected] (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 @R_262_10586@l size 349
【异常问题解决
查看日志进行分析,编写rsync服务端hosts解析文件

10 rsync服务没有正确启动
错误日志信息】
Connection refused (111)
错误演示过程】
[[email protected] ~]# rsync -avz /etc/hosts [email protected]::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]
【异常问题解决
[[email protected] ~]# rsync --daemon
[[email protected] ~]# ss -lntup |grep rsync
tcp LISTEN 0 5 :::873 :::* users:(("rsync",1434,5))
tcp LISTEN 0 5 *:873 *:* users:(("rsync",4))
[[email protected] ~]# rsync -avz /etc/hosts [email protected]::BACkup password: sending incremental file list hosts sent 196 bytes received 27 bytes 49.56 bytes/sec @R_262_10586@l size is 349 speedup is 1.57

大佬总结

以上是大佬教程为你收集整理的Rsync服务常见问题全部内容,希望文章能够帮你解决Rsync服务常见问题所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。