Ceph图形界面配置
1、查看Ceph版本,nautilus版及以后需要在所有运行mgr的节点安装ceph-mgr-dashboard
ceph mgr versions
yum install -y ceph-mgr-dashboard
2、查看MGR模块和帮助信息
ceph mgr module --help
ceph mgr module ls
3、启用或禁用MGR dashboard模块
ceph mgr module enable dashboard
ceph mgr module disable dashboard
4、创建自签名证书或者禁用ssl
ceph dashboard create-self-signed-cert
ceph config set mgr mgr/dashboard/ssl false
5、设置MGR dashboard模块的ip和port(可选)
ceph config set mgr mgr/dashboard/server_addr 0.0.0.0
ceph config set mgr mgr/dashboard/server_port 8443
6、设置登录认证
echo "password" > password.txt
ceph dashboard ac-user-create admin -i password.txt administrator
ceph dashboard ac-user-show admin
systemctl restart ceph-mgr.target
7、列出MGR模块提供的服务端点
ceph mgr services
开启对象网关管理功能
1、创建rgw用户
radosgw-admin user create --uid=<value> --display-name=<value>
2、配置对象网关认证
ceph dashboard set-rgw-api-access-key $access_key
ceph dashboard set-rgw-api-secret-key $secret_key
3、配置对象网关主机名和端口
ceph dashboard set-rgw-api-host <value>
ceph dashboard set-rgw-api-port <int>
作者:wanghongwei
版权声明:本作品遵循<CC BY-NC-ND 4.0>版权协议,商业转载请联系作者获得授权,非商业转载请附上原文出处链接及本声明。