linux rsync 指定用户名和密码的方式同步(转)
rsync 客户端 172.17.0.29 rsync 服务端 --daemon 方式运行 172.17.0.31 备份端 以下首先说明服务端的安装情况: 1 检查是否安装rsync rpm -qa rsync rsync-3.0.6-12.el6.x86_64 如果没有安装进行yum 安装即可 yum install -y rsync yum install -y xinetd /etc/init.d/xinetd status /etc/init.d/xinetd restart 2 useradd rsync -s /sbin/nologin -M mkdir /backup chown rsync.rsync /backup 3 编写rsync daemon 配置文件/etc/rsyncd.conf ##rsyncd.conf start###工作中指定用户(需要指定用户) uid = rsync gid = rsync use chroot = no max connections = 200 timeout = 300 pid file = / var /run/ rsyncd.pid lock file = / var /run/rsync. lock log file = / var /log/ rsyncd.log 【backup】指定模块 path = /