rsync:mkstemp failed:Permission denied

问题:10.0.0.181


[root@test181 ~]# rsync -azv bb.tar [email protected]::ggp --password-file=/etc/rsync.password
sending incremental file list
bb.tar
rsync: mkstemp "/.bb.tar.CXMF7s" (in ggp) failed: Permission denied (13)
sent 227 bytes  received 27 bytes  508.00 bytes/sec
total size is 10240  speedup is 40.31
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1039) [sender=3.0.6]ji

解决:10.0.0.182:

原因一:

/etc/rsyncd.conf配置文件中有错误,如uid = rsync写成了d = rsync.请仔细检查

/etc/rsyncd.conf配置模板:

[root@test181 ~]# cat /etc/rsyncd.conf
uid = rsync
gid = rsync
max connections = 200
timeout = 300
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/ryncd.log
[ggp]
path = /ggp/
ingnore errors
read only = false
list = false
hosts allow = 10.0.0.0/24
hosts deny = 0.0.0.0/32
auth users = rsync_backup
secrets file = /etc/rsync.password

原因二:/ggp的权限不正确。

[root@ggp ~]# chown -R rsync.rsync /ggp

10.0.0.181再次执行成功

[root@test181 ~]# rsync -azv bb.tar [email protected]::ggp --password-file=/etc/rsync.password
sending incremental file list
bb.tar
sent 227 bytes  received 27 bytes  508.00 bytes/sec
total size is 10240  speedup is 40.31


你可能感兴趣的:(denied,rsync:mkstemp)