Ceph 开启 Dashboard

在所有dashboard节点上安装插件包。
启动 ceph-mgr 的IP为 192.168.123.199

yum install -y ceph-mgr-dashboard -y

# 开启插件
ceph mgr module enable dashboard

# 禁用SSL。
ceph config set mgr mgr/dashboard/ssl false

# 配置监听IP。此处必须设置监控地址为0.0.0.0,而不能是直接IP地址,因为其监控的是所有本地地址包括IPV4和IPV6,同时也不能禁用IPV6地址。
ceph config set mgr mgr/dashboard/server_addr 0.0.0.0

# 配置监听端口。
ceph config set mgr mgr/dashboard/server_port 8443

# 设置用户及密码。
echo "123456" > 1.txt
ceph dashboard ac-user-create admin -i 1.txt administrator

# 查看已开启模块信息。
ceph mgr services

# 使用配置生效。
ceph mgr module disable dashboard
ceph mgr module enable dashboard

# 通过查看ceph mgr services命令输出地址。
ceph mgr services
{
    "dashboard": "http://ceph-node1.localdomain:8443/"
}

# 访问 Ceph Dashboard 地址http://192.168.123.199:8443/

参考:https://docs.ceph.com/en/nautilus/mgr/dashboard/#

posted @ 2022-01-05 16:45  klvchen  阅读(672)  评论(0编辑  收藏  举报