在部署sersync + rsync
时,一直不成功,从日志中看到:
auth failed from unknown (xx.xx.xx.xx) unauthorised user
从报错中可以看出可能是两个原因:
- unknown (xx.xx.xx.xx)
- unauthorised user
在网上有很多人的建议方案是在rsync
的服务器的/etc/hosts
中添加主服务器的IP
及名字。这与第一个原因也相符,先尝试这种解决方案。之后再看到日志中看到错误有一点变化:
auth failed from machine_name(xx.xx.xx.xx) unauthorised user
unauthorised user
有可能是账号密码的问题,但是在主服务器通过手动推送检查账号密码是没有问题的。
rsync-avzP /data/www/ username@xx.xx.xx.xx::www/--password-file=/etc/rsync.password
在同步服务器上可以看到所要同步的内容已经全部同步,日志也显示正常。账号密码没有问题,但是却又和账号密码有关,再检查sersync
的config.xml
配置文件,发现:
<rsync>
<commonParamsparams="-artuz"/>
<auth start="false"users="sync_user" passwordfile="/etc/rsync.pas"/>
<userDefinedPortstart="false" port="874"/><!-- port=874 -->
<timeoutstart="true" time="100"/><!-- timeout=100 -->
<sshstart="false"/>
</rsync>
其中auth
的start
仍为false
。将其修改为true
后重试正常了。