rsync同步本地文件到服务器后文件权限变了
根据rsync文档参数-a作用是同步后文件不改变属主和用户组,但是文件在本地是www:www同步到服务器老是变成mysql:mysql了,请问是哪里出了问题?
客户端同步动作:
rsync -avz --password-file=/root/rsync.pwd /home/wwwroot/* www@10.11.125.12::www_online
服务端rsync配置文件:
pid file = /tmp/rsync.pid
port = 873
address = 10.11.125.12
uid = root
gid = root
use chroot = yes
read only = no
hosts allow=10.163.37.136
hosts deny=*
max connections = 5
log file = /alidata/log/rsync/rsync.log
transfer logging = yes
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
[www_online]
path = /alidata/www/test
list=yes
ignore errors
auth users = www
secrets file = /etc/rsyncd/rsyncd.secrets
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加个 -p 参数试试
详细rsync参数请参考 http://lcr.readthedocs.org/en/latest/network/rsync.html