[Ceph] Dashboard

页面效果

微信截图_20190114111700.png

步骤

前提是有一个运行良好的ceph集群,ceph版本是mimic,其他版本不适用该方案。
引文1
引文2

  1. 启用Dashboard
  2. 配置证书
  3. 配置服务器端口
  4. 重启

启动Dashboard

ceph mgr module enable dashboard

配置证书

  1. 生成证书
    ceph dashboard create-self-signed-cert

  2. 生成证书密钥
    PS: 找个地方创建一个文件夹,存放秘钥

mkdir mgr-dashboard

cd mgr-dashboard

openssl req -new -nodes -x509   -subj "/O=IT/CN=ceph-mgr-dashboard" -days 3650   -keyout dashboard.key -out dashboard.crt -extensions v3_ca

配置服务器端口

ceph config set mgr mgr/dashboard/server_addr 192.168.236.131

ceph config set mgr mgr/dashboard/server_port 8443

//验证
ceph mgr service

//创建用户和密码
ceph dashboard set-login-credentials admin admin

重启

systemctl restart ceph-mgr@node1

//访问
https://ip:8443

PS:
1 注意是https,不是http
2 如果centos自带的火狐不能正常显示,建议更新下浏览器

你可能感兴趣的:([Ceph] Dashboard)