1、 安装rsync
yum -y installrsync
2、 无密码命令行同步
客户端操作
ssh-keygen -trsa
ssh-copy-id -i /root/.ssh/[email protected]
ssh [email protected]
mkdir -pv/data/shell
rsync -az--delete [email protected]:/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 [email protected]::backdata /data/shell/