ceph用户管理

查看用户及权限

bash 复制代码
ceph auth ls

可以看到管理员权限具有所有组件的全部权限

查看特定用户

bash 复制代码
ceph auth get client.admin

创建cephfs使用用户

bash 复制代码
ceph auth get-or-create client.fs mon 'allow r' mds 'allow rw' osd 'allow rw  pool=cephfs-data' -o /etc/ceph/ceph.client.fs.keyring
ceph auth get client.fs

查看生成的密钥文件

bash 复制代码
cat /etc/ceph/ceph.client.fs.keyring 

通过keyring文件和ceph.conf文件即可使用该用户

指定用户访问集群

bash 复制代码
ceph --name client.fs osd pool ls  #使用--name需要添加client前缀
ceph --id fs osd pool ls          #使用--id不需要添加client前缀

修改用户权限

bash 复制代码
ceph auth caps client.fs mon 'allow rw'  mds 'allow rw' osd 'allow rw'
ceph auth get client.fs

删除用户

bash 复制代码
ceph auth del client.fs
相关推荐
2401_8346369920 小时前
Ceph 分布式存储从入门到精通:架构解析 + cephadm 部署 + 存储池管理
ceph
吾皇斯巴达5 天前
ceph index-less桶可以用radosgw-admin bucket rm吗
ceph
运维全栈笔记17 天前
腾讯云 CVM 搭建 Ceph 集群部署笔记
笔记·ceph·腾讯云
刘某的Cloud18 天前
ceph osd 导入导出 rbd volume 卷
linux·运维·ceph·volume
heimeiyingwang18 天前
【架构实战】Kubernetes存储实战:从EmptyDir到Ceph CSI的持久化存储选型指南
ceph·架构·kubernetes
DLYSB_1 个月前
存储运维实战:基于 Ceph Event 监听与 Python 适配器的分布式存储健康度物理声光响应架构
运维·ceph·python·报警灯
AAA@峥1 个月前
Ceph 分布式文件系统 CephFS 实战指南
运维·分布式·ceph
AAA@峥1 个月前
Ceph RBD 块存储全解析:原理与实操汇总
运维·分布式·ceph
AAA@峥1 个月前
Ceph 集群配置管理完整指南
运维·数据库·分布式·ceph
胖兔纸22 个月前
OpenStack 1.7.2 & Ceph 9.2.1 运维命令
运维·ceph·openstack