glusterfs的文件权限问题
glusterfs的文件权限问题
我用这个来做web集群,通过web上传上来的文件,怎么都带T权限。导致别的前端webserver不能读取到这个文件。怎么去掉呢?
配置
volume remote1
type protocol/client
option transport-type tcp
option remote-host 192.168.1.56
option remote-subvolume brick
end-volume
volume remote2
type protocol/client
option transport-type tcp
option remote-host 192.168.1.57
option remote-subvolume brick
end-volume
volume remote3
type protocol/client
option transport-type tcp
option remote-host 192.168.1.58
option remote-subvolume brick
end-volume
volume remote-ns
type protocol/client
option transport-type tcp/client
option remote-host 192.168.1.59
option remote-subvolume brick
end-volume
volume distribute
type cluster/distribute
subvolumes remote1 remote2 remote3
end-volume
volume afr2
type cluster/afr
subvolumes distribute remote-ns
end-volume
volume writebehind
type performance/write-behind
option aggregate-size 128KB
option window-size 1MB
subvolumes afr2
end-volume
volume cache
type performance/io-cache
option cache-size 512MB
subvolumes writebehind
end-volume
[ 本帖最后由 scyzxp 于 2009-4-16 17:32 编辑 ]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果单独从权限上分析就是要取消t 或者增加权限,或者前端web server执行者的用户组呀
我的所有服务器上面跑的所有服务全部都以相同的身份运行的。文件的属主和属组也是一样的,关键是增加了一个T
不懂