Ceph Nautilus:如何启用 Ceph MGR 仪表板

Ceph Nautilus : How to enable the Ceph MGR dashboard

我最近安装了 Ceph Nautilus。

ceph version 14.2.1 (d555a9489eb35f84f2e1ef49b77e19da9d113972) nautilus (stable)

我看不到任何 "dashboard" 模块(既没有处于启用状态也没有处于禁用状态)。我正在检查 "ceph mgr module ls"

如果我尝试启用它,我会收到以下错误。

[user@system mydir]$ ceph mgr module enable dashboard
Error ENOENT: all mgr daemons do not support module 'dashboard', pass --force to force enablement

如何启用仪表板模块?

  1. 从下面安装适当的包 link
# rpm -Uvh http://download.ceph.com/rpm-nautilus/el7/noarch/ceph-mgr-dashboard-14.2.1-0.el7.noarch.rpm

注意:它会要求一些依赖项,使用 yum/apt 包管理器安装,然后执行上面的命令。

  1. 启用 ceph mgr 仪表板
# ceph mgr module enable dashboard 
# ceph mgr module ls 
  1. 创建self-signed证书
# sudo ceph dashboard create-self-signed-cert 
Self-signed certificate created 
  1. 为仪表板创建用户
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": "b$w60gItcbKd6PULNYI9McmOBMiAzFoKJ9T9XGva8vC6dxIyqMsE4kK", "email": null}

# ceph mgr services 
{
    "dashboard": "https://ceph-mgr:8443/"
}

注意:这里您可以使用 ceph-mgr 节点的 IP 地址访问,而不是主机名。

  1. 确保防火墙端口已打开
# firewall-cmd --add-port=8443/tcp --permanent 
# firewall-cmd --reload 
  1. 在任何浏览器中打开仪表板url
https://ceph-mgr:8443 or https://192.168.1.10:8443
  1. 输入用户名:cent 密码:password

给你...