码迷,mamicode.com
首页 > 其他好文 > 详细

centos下rsync同步数据

时间:2015-07-21 07:55:16      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:配置文件   密码服务   客户端   用户   

1、 安装rsync

yum -y installrsync

2、 无密码命令行同步

客户端操作

ssh-keygen -trsa

    ssh-copy-id -i /root/.ssh/id_rsa.pubrsyncuser@192.168.1.181

ssh rsyncuser@192.168.1.181

 

mkdir -pv/data/shell

rsync -az--delete rsyncuser@192.168.1.181:/data/rsyncdata/ /data/shell/

3、 用密码服务方式同步

由于rsync属于xinetd的服务,因为需要先安装xinetd

yum -y installxinetd

vi/etc/xinetd.d/rsync

distable 改为 no

 

启动服务

/etc/init.d/xinetdstart

netstat -tunpl |grep 873

创建用户

useraddrsyncuser

echo ‘123456‘ |passwd --stdin rsyncuser

 

创建备份目录

mkdir -pv/data/rsyncdata

建立配置文件

vi/etc/rsyncd.conf

uid=nobody

gid=nobody

address=192.168.1.181

port=873

hostsallow=192.168.1.186

use chroot=yes

maxconnections=5

pidfile=/var/run/rsyncd.pid

lockfile=/var/run/rsync.lock

log file=/var/log/rsyncd.log

motdfile=/etc/rsyncd.motd

 

[backdata]

path=/data/rsyncdata

comment=rsyncbackup

read only=yes

list=yes

authusers=rsyncuser

secretsfile=/etc/rsyncd.passwd

 

建立提醒文件和密码文件

echo ‘welcome tobackup server‘ > /etc/rsyncd.motd

vi/etc/rsyncd.passwd

rsyncuser:123456

chmod 600/etc/rsyncd.passwd

service xinetdrestart

 

客户端无密码同步

exportRSYNC_PASSWORD=123456

rsync -azrsyncuser@192.168.1.181::backdata /data/shell/


本文出自 “记录工作学习的轨迹” 博客,请务必保留此出处http://stephenliu.blog.51cto.com/6470474/1676556

centos下rsync同步数据

标签:配置文件   密码服务   客户端   用户   

原文地址:http://stephenliu.blog.51cto.com/6470474/1676556

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