5.4.4. 创建具有密钥环的 Ceph 用户
Ceph 提供了在 Red Hat Ceph Storage 集群中直接创建用户的功能。但是,您还可以直接在 Ceph 客户端密钥环中创建用户、密钥和功能。
前提条件
- 一个正在运行的 Red Hat Ceph Storage 集群。
- 节点的根级别访问权限。
流程
将用户导入到密钥环中:
Example
[root@mon ~]# ceph-authtool -n client.ringo --cap osd 'allow rwx' --cap mon 'allow rwx' /etc/ceph/ceph.keyring
创建密钥环并同时向密钥环中添加新用户:
例如:
[root@mon ~]# ceph-authtool -C /etc/ceph/ceph.keyring -n client.ringo --cap osd 'allow rwx' --cap mon 'allow rwx' --gen-key
在忘记情景中,新用户
client.ringo
只是在密钥环中。将新用户添加到 Ceph 存储集群中:
[root@mon ~]# ceph auth add client.ringo -i /etc/ceph/ceph.keyring
其它资源
- 有关功能的更多详情,请参阅 Ceph 用户管理背景。