rsync 실시간 동기화 오류 오류 오류: some files/attrs were not transferred (see previous errors) 해결
2691 단어 원격 동기화
1. 고장 현상
rsync 동기화를 실행할 때 다음 오류가 발생했습니다.
[root@client abc]# rsync -azH --delete --password-file=/etc/server.pass /opt/abc/ backuper@192.168.5.129::wwwroot
rsync: failed to set times on "/." (in wwwroot): Operation not permitted (1)
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1052) [sender=3.0.9]
2. 해결 방법
rsync 서버의 프로필에 들어가서 uid와gid를 루트로 바꾸면 됩니다
vi /etc/rsyncd.conf
uid = root
gid = root
rsync 서비스 재개
kill $(cat /var/run/rsyncd.pid) ###
rsync --daemon ##