- 添加用户名为
rsync
用户
# 此用户无法登录系统
useradd rsync -s /sbin/nologin -M
- 确认是否已安装rsync
# 方式1 rpm
rpm -qa rsync
# 方式2 yum
yum install -y rsync
- 编写rsync daemon 配置文件/etc/rsyncd.conf
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
[pbfile]
path = /data/server/mock_sys/src/business/proto/
read only = false
list = false
hosts allow =*
auth users = rsync
secrets file = /etc/rsync.password
- 创建上述配置中指定的虚拟账号和密码:
echo "rsync_backup:123456">/etc/rsync.password
chmod 600 /etc/rsync.password
- 启动服务
rsync --daemon
# 可以通过以下方式检查服务是否启动成功
ps -ef |grep rsync
netsta