分类: 服务器与存储
2014-09-10 15:37:31
开启acl
1. 可以在glusterfs端使用
# mount –o remount,acl device-namepartition
For example:
# mount -o acl /dev/sda1 /data
2. 也可以在client端使用
# mount –t glusterfs -o acl severname:/volume-idmount point
For example:
# mount -t glusterfs -o acl g1:/ test-volume /mnt/gluster
设置acl
For example:
# setfacl -m u:user1:rw /mnt/gluster/data/testfile
# setfacl -m g:user2:rw /mnt/gluster/data/testfile
# setfacl -m u:501:rw /mnt/gluster/data/testfile
# setfacl -m g:502:rw /mnt/gluster/data/testfile
# 501为用户id,502为组id。
设置默认规则,只针对目录
For example:
# setfacl -d -m u:user1:rw /mnt/gluster/data/
#当/mnt/gluster/data/下新建文件时,user1对文件默认有rw权限。
取消acl
For example:
# setfacl -x u:user1:rw /mnt/gluster/data/testfile
查看acl
For example:
# getfacl /mnt/gluster/data/testfile