rsync: mkstemp ".test1.sh.ox5lBz" (in conf) failed: Permission denied (13)

来源:互联网 发布:listview 优化的原理 编辑:程序博客网 时间:2024/06/11 04:40
[root@hadoop1 ~]# rsync -avz --delete test1.sh  --timeout=100 rsync_backup@192.168.148.141::conf --password-file=/etc/rsync.password
sending incremental file list
test1.sh
rsync: mkstemp ".test1.sh.ox5lBz" (in conf) failed: Permission denied (13)


sent 181 bytes  received 27 bytes  59.43 bytes/sec
total size is 159  speedup is 0.76

rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1039) [sender=3.0.6]

排查了配置文件均未发现错误


最后发现原因为未关闭Linux系统selinux

执行setenforce 0临时关闭selinux即可复制成功


如下配置文件enforcing修改为disabled即可永久关闭selinux,执行sestatus查看selinux状态

[root@localhost etc]# cat /etc/selinux/config 


# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=enforcing
# SELINUXTYPE= can take one of these two values:
#     targeted - Targeted processes are protected,
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted 

0 0
原创粉丝点击