rsync安装与配置

I.rsync的安装
yum -y install rsync

II.rsync的配置
rsync安装好之后是没有配置文件的,要新建立一个
vi /etc/rsyncd.conf
内容如下:
uid=nobody
gid=nobody
use chroot=no
log file=/var/log/rsync.log
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsync.lock

[xyz]
path=/root/rsync/
auth users=dgf
secrets file=/root/rsync.pass
read only=no
list=no

建立密码文件rsync.pass
更改其权限 chmod 600 rsync.pass
内容格式为 dgf:abcdef

启动服务端服务  rsync --daemon
服务器端ip地址为:192.168.66.4

客户端同样也需要安装 rsync 服务
建立密码文件rsync.pass 权限同上
内容仅需要为password即可,
vi /root/rsync.pass
abcdef
注意:客户端的密码文件不需要写用户名

在客户端运行同步命令如下:
rsync -vzrtopg --progress --delete --password-file=/root/rsync.pass [email protected]::xyz /root/python/
即可实现文件的同步

你可能感兴趣的:(linux,职场,rsync,休闲)