扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
建站服务器
1.1.1 rsync安装
服务端与客户端都需要安装 rsync
安装命令:
yum install rsync
1.1.2 rsync 服务端配置步骤 1:生成并编辑配置文件rsyncd.conf
#touch /etc/rsyncd.conf #生成rsync的配置文件
#vi /etc/rsyncd.conf
具体内容如下所示(需要手动输入):
secrets file = /etc/rsyncd.secrets
read only = yes
list = yes
uid = root
gid = root
hosts allow = 10.3.4.219 #客户端IP地址,多个以空格分开
#hosts deny = 10.4.5.0/24
use chroot = no
max connections = 10
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
charset=GBK
[rsyncd]
comment = pag's directory #自己添加说明
path = /home/test #要同步的目录
auth users = rsync #使用的用户
secrets file = /etc/rsyncd.secrets
步骤 2:生成验证文件
# echo "rsync:rsync" > /etc/rsyncd.secrets ( rsync:rsync为用户和密码,格式为user:passwd)
# chown root:root /etc/rsyncd.secrets
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流