- 从以下链接安装适当的软件包
# rpm -Uvh http://download.ceph.com/rpm-nautilus/el7/noarch/ceph-mgr-dashboard-14.2.1-0.el7.noarch.rpm
注意:它会要求一些依赖项,使用 yum/apt 包管理器安装,然后执行上述命令。
- 启用 ceph mgr 仪表板
# ceph mgr module enable dashboard
# ceph mgr module ls
- 创建自签名证书
# sudo ceph dashboard create-self-signed-cert
Self-signed certificate created
- 为仪表板创建用户
Example: [ceph dashboard ac-user-create (username) (password) administrator]
# ceph dashboard ac-user-create cent password administrator
{"username": "cent", "lastUpdate": 1560292901, "name": null, "roles": ["administrator"], "password": "$2b$12$w60gItcbKd6PULNYI9McmOBMiAzFoKJ9T9XGva8vC6dxIyqMsE4kK", "email": null}
# ceph mgr services
{
"dashboard": "https://ceph-mgr:8443/"
}
注意:这里您可以使用 ceph-mgr 节点的 IP 地址而不是主机名来访问。
- 确保防火墙端口已打开
# firewall-cmd --add-port=8443/tcp --permanent
# firewall-cmd --reload
- 在任何浏览器中打开仪表板 URL
https://ceph-mgr:8443 or https://192.168.1.10:8443
- 输入用户名:cent密码:password
干得好...