rsync配置

简介:
rsync配置
为实现同步更新文件配置了下rsync
在redhat系统上配置 rsync-2.6.3-1
服务端相关配置
1.在/etc/下创建三个文件
rsyncd.conf     rsyncd.motd     rsyncd.secrets 
2.配置文件
vi rsyncd.conf
motd file = /etc/rsyncd.motd #欢迎文件
read only = no
list = yes
uid = root
gid = root
hosts allow = 192.168.128.133
hosts deny =192.168.128.0/24
max connections = 2
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
#define dirctory for rsync
[test]
comment = nagios's directory from 192.168.128.133
path =/test
secrets file =/etc/rsyncd.secrets#密码文件
auth users = test #rsync用户(与linux里的用户无关)
read only = no
3.欢迎文件
[root@localhost test]# vi /etc/rsyncd.motd
Welcome to use the rsync services!
4.密码文件
[root@localhost test]#vi /etc/rsyncd.secrets
test:test
5.chmod 600 /etc/rsyncd.*
6.运行rsync
/usr/local/rsync/bin/rsync --daemon /etc/rsyncd.conf
rsync的路径 rsync配置文件
7.客户端相关配置
a)安装rsync包
b)创建密码文件
[root@localhost ~]#vi /etc/rsyncd.secrets  
test#客户端只需密码无须用户
c)chmod 600 /etc/rsyncd.secrets
如果没有这步会报
password file must not be other-accessible
continuing without password file
Password: 
d)rsync -vzrtopg --progress --delete --password-file=/etc/rsyncd.secrets  test@192.168.128.130::test /root/test  
测试连接
8.实现定时同步
8.实现定时同步
crond.rsync
*/10 * * * * rsync -vzrtopg --progress --delete --password-file=/etc/rsyncd.secrets  test@192.168.128.130::test /root/test
crontab crond.rsync
crontab -e编辑现在有crontab
crontab -l
 

本文转自 qwjhq 51CTO博客,原文链接:http://blog.51cto.com/bingdian/170793
相关文章
|
算法 安全 Shell
rsync使用详解
1、什么是Rsync  Rsync(remote synchronize)是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件。Rsync使用所谓的“Rsync算法”来使本地和远 程两个主机之间的文件达到同步,这个算法只传送两个文件的不同部分,而不是每次都整份传送,因此速度相当快。
1180 0
|
安全 Linux 网络安全
|
数据安全/隐私保护 网络协议 算法
|
网络协议 开发工具 数据安全/隐私保护
|
算法 数据安全/隐私保护
|
Unix Linux 网络安全

相关实验场景

更多