autofs ssh fuse 和权限问题

autofs ssh fuse 和权限问题

我在 Centos 6 上安装了一个远程备份空间来执行远程备份,一切运行正常,没有问题

My /etc/auto.master file:
/- /etc/auto.mymount uid=0,gid=0,--ghost

My /etc/auto.mymount file:
/mnt/backup  -fstype=fuse,rw,allow_other,IdentityFile=/root/.ssh/id_rsa :sshfs\#user@of-storage box\:/

我的问题是,备份轮换失败,即使已声明 allow_other

计划任务:

30 3 */2 * * root find /mnt/backup/backup_space/* -type d -ctime +5 -delete

错误:

find: cannot delete `/mnt/backup/backup_space/2019-04-05': Operation not permitted

仍然无法追踪问题,因为 autofs、fuse 已作为 root 用户安装。有什么可以帮到我的吗?

相关内容