rsync搭建

简介:

1.安装rsync和xinetd

yum install rsync xinetd


2.配置xinetd:

vi /etc/xinetd.d/rsync

#disable = yes修改为

disable = no


3.启动xinetd服务:

service xinetd start


4,编辑rsyncd.conf配置文件:

[root@dx-it-twebs01 wuxiaoyu]# cat /etc/rsyncd.conf 

#motd file = /etc/rsyncd.motd

use chroot = yes

uid=root

gid=root

max connections = 2000

timeout = 600

pid file = /var/run/rsyncd.pid

lock file = /var/run/rsyncd.lock

log file = /var/log/rsync.log

ignore errors

read only = false

list = false

hosts allow = dx-it-tw03.dx.sankuai.com

hosts deny = *


[wikidata]

comment = wikidata

path = /data/store/

auth users = sankuai

secrets file = /etc/rsync/sankuai_rsyncd.secrets

[root@dx-it-twebs01 wuxiaoyu]# 


5,配置服务端秘钥

mkdir /etc/rsync

touch /etc/rsync/sankuai_rsyncd.secrets  ##密码为sankuai:123456789

chmod  600 /etc/rsync/sankuai_rsyncd.secrets


6,配置客户端服务秘钥

touch secrets.txt

chown  sankuai.sankuai secrets.txt

chmod  600 secrets.txt 


7,测试传输wuxiaoyu这个目录到rsync的服务端

rsync -varz  mfs/wuxiaoyu   sankuai@dx-it-twebs01.dx.sankuai.com::wikidata --password-file secrets.txt


网上有很多教程使用xinet.d来启动rsync服务端。

不过也使用rsync自带的来启动服务端

如:rsync --daemon --config=/home/leyewen/etc/rsync/rsyncd.conf

这种方式是以守护进程的方式启动服务,但是守护进程方式启动的进程不能被daemontools管理,daemontools 管理nginx的时候,nginx.conf 必须关闭daemon, daemon off;

http://kavy.iteye.com/blog/2119978

如果daemontools想管理rsync,则需要再run脚本中以如下方式启动(--no-detach 这个参数)

exec rsync --daemon  --no-detach --config=/etc/rsyncd.conf >> /var/log/rsync.log  2>&1

同时此脚本要有执行权限,chmod +x run

1
2
3
4
5
6
7
8
9
#!/bin/bash
NUM = `ps  - ef |grep  - v grep | grep  - "rsync --daemon" `
if  [ $NUM  - lt  1  ]
then
     cd  / opt / apps / rsync
     #ulimit -c unlimited
     exec  rsync  - - daemon   - - no - detach  - - config = / etc / rsyncd.conf >>  / var / log / rsync.log   2 >& 1
     #exec setuidgid sankuai /opt/apps/xxx_agent/xxx_agent > /dev/null 2>&1
fi

--no-detach 含义 

When running as a daemon, this option instructs rsync to not detach itself and become a background process. This option is required when running as a service on Cygwin, and may also be useful when rsync is supervised by a program such as daemontools or AIX's System Resource Controller--no-detach is also recommended when rsync is run under a debugger. This option has no effect if rsync is run from inetd or sshd.

原文:https://download.samba.org/pub/rsync/rsync.html


rsync 参数配置

http://tenderrain.blog.51cto.com/9202912/1874449

https://download.samba.org/pub/rsync/rsync.html




      本文转自Tenderrain 51CTO博客,原文链接:http://blog.51cto.com/tenderrain/1872677,如需转载请自行联系原作者


相关文章
|
算法 网络协议 安全
Rsync 笔记(一)
rsync命令是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件。rsync使用所谓的“rsync算法”来使本地和远程两个主机之间的文件达到同步,这个算法只传送两个文件的不同部分,而不是每次都整份传送,因此速度相当快。
1128 0
|
数据安全/隐私保护 开发工具 Perl
|
安全 Linux 网络安全
|
测试技术 网络安全 开发工具
|
数据安全/隐私保护 网络协议 算法
|
网络协议 网络安全 数据安全/隐私保护
|
网络协议 开发工具 数据安全/隐私保护
|
Linux 数据安全/隐私保护