Ceph Dashboard

# 查看Ceph版本
ceph mgr version
# 实验版本是mimic版,如果是nautilus版需要安装ceph-mgr-dashboard
# yum install -y ceph-mgr-dashboard

# 查询MGR节点
ceph -s

# 查看MGR模块和帮助信息
ceph mgr module --help
ceph mgr module ls

# 启用MGR dashboard模块
ceph mgr module enable dashboard

# 创建自签名证书
ceph dashboard create-self-signed-cert
# ceph config set mgr mgr/dashboard/ssl false # 禁用ssl

# 列出MGR模块提供的服务端点 mimic版默认监听在7000端口
ceph mgr services

# 设置登录认证
# dashboard set-login-credentials <username> <password>
ceph dashboard set-login-credentials admin 12345
# 有版本使用如下指令 查看帮助ceph dashboard --help
# ceph dashboard ac-user-create <username> <password> <role>

# 自定义MGR dashboard模块的ip和port
ceph config set mgr mgr/dashboard/server_addr 172.25.25.3
ceph config set mgr mgr/dashboard/server_port 7070
systemctl restart ceph-mgr.target

# 开启对象网关管理功能
# 创建rgw用户
radosgw-admin user create --uid=<value> --display-name=<value>

# 配置对象网关认证
ceph dashboard set-rgw-api-access-key $access_key
ceph dashboard set-rgw-api-secret-key $secret_key

# 配置对象网关主机名和端口
ceph dashboard set-rgw-api-host <value>
ceph dashboard set-rgw-api-port <int>

 

Ceph Dashboard

上一篇:PodPreset


下一篇:hive爬坑