老男孩教育每日一题-2017年3月20日:使用rsync守护进程模式,经常会出现的异常情况说明,并说明应该如何解决

Rsync服务常见问题汇总讲解:

==================================

  • rsync服务端开启的iptables防火墙

客户端的错误现象:No route to host

   [[email protected]]# rsync -avz /etc/hosts [email protected]::backup
   rsync:failed to connect to 172.16.1.41: No route to host (113)
   rsyncerror: 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.
  • rsync客户端执行rsync命令错误:

客户端的错误现象:

[[email protected] tmp]# rsync -avz /etc/hosts [email protected]::/backup
ERROR: Theremote path must start with a module name not a /
rsyncerror: error starting client-server protocol (code 5) at main.c(1503)[sender=3.0.6]

异常问题解决:

rsync命令语法理解错误,::/backup是错误的语法,应该为::backup(rsync模块)

  • @ERROR: 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密码配置文件后面注意不要有空格

5.rsync客户端密码文件中只输入密码信息即可,不要输入虚拟认证用户名称

  • Unknown module ‘backup‘
[[email protected] tmp]# rsync -avz /etc/[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配置文件模块名称书写错误

  • Permission denied
[[email protected] tmp]# rsync -avz /etc/[email protected]::backup
Password:
sending incremental file list
hosts
rsync: mkstemp ".hosts.5z3AOA" (inbackup) 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]

异常问题解决:

1.共享目录的属主和属组不正确,不是rsync

2.共享目录的权限不正确,不是755

  • chdir failed
[[email protected] tmp]# rsync -avz /etc/hostsrsync_[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. 建立的备份存储目录和配置文件定义不一致

[[email protected]]# /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 retrievingcurrent directory: getcwd: cannot access parent directories: No such file ordirectory
                                                          [  OK  ]

说明:如果没有备份存储目录,xinetd服务都不能正确启动

  • invalid uid rsync
[[email protected] tmp]# rsync -avz /etc/[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虚拟用户不存在了

  • 客户端已经配置了密码文件,但免秘钥登录方式,依旧需要输入密码
   passwordfile must not be other-accessible
[[email protected] tmp]# rsync -avz /etc/[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
total size is 349 speedup is 10.26

异常问题解决:

rsync客户端的秘钥文件也必须是600权限

  • rsync客户端连接慢问题

错误日志输出

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

2017/03/0820: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/ [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  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/ [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  total size 349

异常问题解决:

查看日志进行分析

  • rsync服务没有正确启动
Connection refused (111)
[[email protected] ~]#  rsync -avz /etc/[email protected]::backup
rsync: failed to connect to 172.16.1.41: Connectionrefused (111)
rsync error: error in socket IO (code 10) atclientserver.c(124) [sender=3.0.6]

解决 rsync服务没开启

[[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",1434,4))
[[email protected] ~]# rsync -avz /etc/[email protected]::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
时间: 2024-10-04 02:43:34

老男孩教育每日一题-2017年3月20日:使用rsync守护进程模式,经常会出现的异常情况说明,并说明应该如何解决的相关文章

老男孩教育每日一题-2017年5月2日-Linux系统中,不小心把chmod命令的权限弄没了,怎么解决?

老男孩教育每日一题-2017年5月2日-Linux系统中,chmod命令没有执行权限(x权限)或者chmod命令文件的权限为000,怎么解决? 解决方法有两种: 方法一: [[email protected] bin]# cp cp /oldboy/chmod.new (此时复制cp命令文件命名叫chmod.new,此时chmod.new文件有就x的权限,但chmod.new不具备有chmod命令的共功能) [[email protected] bin]# cd /oldboy/ [[email

老男孩教育每日一题-2017年5月9日-vim命令粘贴带#号或注释信息格式会出现混乱情况怎么办

1.题目 老男孩教育每日一题-2017年5月9日-vim编辑器使用知识点:vim命令粘贴带#号或注释信息格式会出现混乱情况,有什么方法进行解决?问题说明:每次复制代码时,如果代码里有 //或# 这样的注释就容易让格式乱掉,显示的内容不整齐,并不是所期望的显示格式. 2.参考答案 原因分析: 是由于vim编辑命令的自动缩进功能所影响,因此粘贴带注释的代码时可以取消自动缩进 问题解决: vim在粘贴代码时会自动缩进,把代码搞得一团糟糕,甚至可能因为某行的一个注释造成后面的代码全部被注释掉:最初的解决

老男孩教育每日一题-2017年5月4日-有一个oldboy.txt文件,把里面所有字母都转换成大写

老男孩教育每日一题-2017年5月4日-有一个oldboy.txt文件,把里面所有字母都转换成大写 文件内容如下: [[email protected] oldboy]# cat oldboy.txt  oldboy.blog.51cto.com www.oldboyedu.com 方法一:sed [[email protected] oldboy]# sed 's#[a-z]#\u&#g' oldboy.txt OLDBOY.BLOG.51CTO.COM WWW.OLDBOYEDU.COM 方

老男孩教育每日一题-2017年05月23日-一个100M的分区,写入0.5K的,或写入1M的,可以写多少?

1.题目 老男孩教育每日一题-2017年05月23日-一个100M的磁盘分区,写入0.5K的文件,或写入1M的文件,分别可以写多少个?为什么? 2.参考答案 一个100M的磁盘分区,写入0.5K的文件,或写入1M的文件,分别可以写多少个?为什么?错误解答:很容易计算1K的个数:100*1000=100000个,1M文件的个数:100/1=100个 解答思想:先答几点知识 a.上面的考试题考察的是文件系统inode和block知识.b.inode是存放文件属性信息的(也包含指向文件实体的指针),默

老男孩教育每日一题-2017年5月8日-请根据以下数字信息,确认相应的端口号,端口号对应的服务名称

1.题目 老男孩教育每日一题-2017年5月8日-网络服务知识点:请根据以下数字信息,确认相应的端口号,端口号对应的服务名称,以及服务主要的作用(简要说明即可) 202122232567686980110111161 2.参考答案 端口号 端口号对应服务名称 服务作用说明 20/21(TCP) FTP服务端口 20端口为FTP传输数据用 21端口为FTP传输控制信息 文件传输协议(File Transfer Protocol) 由于FTP传输效率非常高,在网络上传输大的文件时,一般也采用该协议

老男孩教育每日一题-2017年4月27日-如何正确清理MySQL binlog?

老男孩教育每日一题-2017年4月27日-如何正确清理MySQL binlog? 今天是每日一题陪伴大家的第37天,期待你的进步. 对于题目和答案的任何疑问,请在博客评论区留言. 往期题目索引 http://lidao.blog.51cto.com/3388056/1914205

老男孩教育每日一题-2017年5月7日-加餐-linux下面如何实现,执行rm命令,就显示do not use rm command

1.题目-老男孩教育每日一题-2017年5月7日-加餐-linux下面如何实现,执行rm命令,就显示do not use rm command 2.要求结果 [[email protected] ~]# rm do not use rm command 3.答案 这需要使用linux里面的别名 alias rm='echo do not use rm command' 注意: 上面命令还要放入到/etc/profile里面永久生效 4.详细过程 第一个里程碑-如何显示这行文字 [[email p

老男孩教育每日一题-2017年5月17日-使用三剑客进行变化格式

1.题目 原始数据: 17/Apr/2015:09:29:24 +0800 17/Apr/2015:09:30:26 +0800 17/Apr/2015:09:31:56 +0800 18/Apr/2015:09:34:12 +0800 18/Apr/2015:09:35:23 +0800 19/Apr/2015:09:23:34 +0800 19/Apr/2015:09:22:21 +0800 20/Apr/2015:09:45:22 +0800 期望结果: 2015-04-17 09:29:

老男孩教育每日一题-2017年5月16日-说说{}与[]这两个符号有什么区别?

1.题目 2.参考答案 这两个看似简单的符号,其实内容还不少.我们一起来看看. 2.1 通配符中 通配符在linux中通常用来匹配/找文件名或目录名.最常用的就是 ls -l *.txt显示出所有以.txt结尾的文件. 2.1.1  {} 花括号,大括号,生产序列 [[email protected] regular]# echo {a..z} {0..9} a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8