码迷,mamicode.com
首页 > 系统相关 > 详细

Linux rsync

时间:2014-09-28 19:06:36      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:linux rsync

rsync_setting
1.下载所需要的软件包
rsync-3.0.9.tar.gz

2.把软件包放到你的服务器端和客户端
[root@SYS-20140609-7-50 soft]# ll
total 776
-rw-r--r-- 1 root root 792725 Jun  8 20:48 rsync-3.0.9.tar.gz

[root@SYS-20140609-7-50 soft]# scp ./rsync-3.0.9.tar.gz root@172.26.7.51:/data/soft/
root@172.26.7.51‘s password:
rsync-3.0.9.tar.gz                                                             100%  774KB 774.2KB/s   00:00 


3.删除在服务器存在的rsync的软件包
[root@SYS-20140609-7-50 init.d]# rpm -qa | grep rsync
rsync-3.0.6-5.el6_0.1.x86_64

[root@SYS-20140609-7-51 data]# which rsync
/usr/bin/rsync
[root@SYS-20140609-7-51 data]# rpm -qa | grep rsync
rsync-3.0.6-5.el6_0.1.x86_64
[root@SYS-20140609-7-51 data]# yum -y remove rsync-3.0.6-5.el6_0.1.x86_64

4.安装软件包

4.1 解压
[root@SYS-20140609-7-50 soft]# tar zxvf rsync-3.0.9.tar.gz

4.2 进入目录
[root@SYS-20140609-7-50 soft]# cd rsync-3.0.9

4.3 进行编译,指定编译目录
[root@SYS-20140609-7-50 rsync-3.0.9]# ./configure

出现问题:
[root@SYS-20140609-7-50 rsync-3.0.9]# ./configure
configure.sh: Configuring rsync 3.0.9
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether to include debugging symbols... yes
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure.sh: error: in `/data/soft/rsync-3.0.9‘:
configure.sh: error: no acceptable C compiler found in $PATH
See `config.log‘ for more details

解决办法:
[root@SYS-20140609-7-50 rsync-3.0.9]# yum -y install gcc

出现这样的字体
config.status: creating lib/dummy
config.status: creating zlib/dummy
config.status: creating popt/dummy
config.status: creating shconfig
config.status: creating config.h

    rsync 3.0.9 configuration successful
 
 说明可以进行一步进行编译操作


 


4.4 编译
[root@SYS-20140609-7-50 rsync-3.0.9]# make && make install

这样就可以使用rsync软件

5. rsync服务器端的配置
Server_setting

5.1 /etc/rsyncd.conf文件配置
[root@SYS-20140609-7-50 123]# cat /etc/rsyncd.conf
#[global]
strict modes = yes
port = 873
logfile = /var/log/rsyncd.log
pidfile = /var/run/rsyncd.pid
lockfile = /var/run/rsync.lock
max connections = 4

#[modules]
[data]
uid= root
gid= root
path = /data/123/
read only = no
host allow = 172.26.7.51
auth users = root
secrets file = /etc/rsyncd.scrt

5.2 /etc/rsyncd.scrt文件的配置
[root@SYS-20140609-7-50 123]# cat /etc/rsyncd.scrt
root:q1w2e3r4

5.3 /etc/rsyncd.scrt文件的权限的配置
[root@SYS-20140609-7-50 123]# chmod 600 /etc/rsyncd.scrt


5.4 启动rsync服务
[root@SYS-20140609-7-50 123]# /usr/local/bin/rsync --daemon

6.客户端的rsync的配置
Client_setting

6.1 /etc/rsyncd.scrt文件的配置
[root@SYS-20140609-7-50 123]# cat /etc/rsyncd.scrt
q1w2e3r4

6.2 /etc/rsyncd.scrt文件的权限的配置
[root@SYS-20140609-7-50 123]# chmod 600 /etc/rsyncd.scrt

6.3验证配置
cd /data/soft/rsync-3.0.9
./rsync -vzrtopg --delete --progress --bwlimit=1000 root@172.26.7.50::data /data/123 --password-file=/etc/rsyncd.scrt

7 验证结果
[root@SYS-20140609-7-51 rsync-3.0.9]# rsync -vzrtopg  --progress --bwlimit=1000 root@172.26.7.50::data /data/123 --password-file=/etc/rsyncd.scrt
receiving incremental file list
./
34
          27 100%   26.37kB/s    0:00:00 (xfer#1, to-check=1/4)
345
          20 100%    0.49kB/s    0:00:00 (xfer#2, to-check=0/4)

sent 95 bytes  received 256 bytes  33.43 bytes/sec
total size is 68  speedup is 0.19


结果成功


8.查看目录文件是否是同步状态
[root@SYS-20140609-7-50 123]# ls
123  34  345

[root@SYS-20140609-7-51 123]# ls
123  34  345

同步成功

 

rsync问题解决集
问题一:
@ERROR: chroot failed
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]
原因:
服务器端的目录不存在或无权限。创建目录并修正权限可解决问题。
 
问题二:
@ERROR: auth failed on module tee
rsync error: error starting client-server protocol (code 5) at main.c(1522) [receiver=3.0.3]
原因:
服务器端该模块(tee)需要验证用户名密码,但客户端没有提供正确的用户名密码,认证失败。提供正确的用户名密码解决此问题。
 
问题三:
@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。掠过软连接文件

本文出自 “夜冷” 博客,请务必保留此出处http://miaopan.blog.51cto.com/4233458/1559103

Linux rsync

标签:linux rsync

原文地址:http://miaopan.blog.51cto.com/4233458/1559103

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!