您的位置:首页 > 大数据 > 人工智能

rsync:mkstemp failed:Permission denied

2013-09-25 12:25 218 查看
问题:10.0.0.181

[root@test181 ~]# rsync -azv bb.tar rsync_backup@10.0.0.182::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 rsync_backup@10.0.0.182::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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  rsync:mkstemp failed