头孢鹦鹉螺 : How to enable the Ceph MGR dashboard

标签 ceph cephfs

我最近安装了 Ceph Nautilus。

ceph version 14.2.1 (d555a9489eb35f84f2e1ef49b77e19da9d113972) nautilus (stable)

我看不到任何“仪表板”模块(无论是启用状态还是禁用状态)。我通过“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 包管理器安装,然后执行上述命令。

  • 启用 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 
    
  • 在任意浏览器中打开仪表板网址
  • https://ceph-mgr:8443 or https://192.168.1.10:8443
    
  • 输入用户名:cent 和密码:密码
  • 给你...

    关于头孢鹦鹉螺 : How to enable the Ceph MGR dashboard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56696819/

    相关文章:

    kubernetes - 使用rook卷时kubernetes节点保持重启

    kubernetes - 错误 - 无法附加或安装卷 : unmounted volumes=[data]

    ubuntu - Kubernetes pod 永远不会准备好

    kubernetes-helm - 如何修复拨号 tcp 10.96.0.1 :443: i/o timeout error for Operator pod installed via helm-rook?

    docker - 在Docker中运行CEPH

    cephadm:无法将节点添加到 ceph 集群(错误 EINVAL:无法连接到主机)

    kubernetes - Cephfs:动态配置不起作用

    kubernetes - Ceph CSI (rbd.csi.ceph.com) 与 Ceph RBD (kubernetes.io/rbd)

    ceph - 在java s3 api中为ceph指定多个端点以连接到ceph集群?