前言
ceph luminous版本新增加了很多有意思的功能,这个也是一个长期支持版本,所以这些新功能的特性还是很值得期待的,从底层的存储改造,消息方式的改变,以及一些之前未实现的功能的完成,都让ceph变得更强。mgr 就是新功能之一。
继续上节ceph 安装继续配置配置 Mgr
# ceph-deploy mgr create ceph1:mon_mgr ceph2:mon_mgr ceph3:mon_mgr
开启 dashboard (在任一 mon_server 节点上)
# ceph mgr module enable dashboard
到此处mgr 配置完成。
在浏览器访问:http://mgr-server-ip:7000/
提醒:目前 mgr 功能模块可能还存在选举问题,如果多mgr 节点都开启,可能会出现web页面取不到数据,建议只开启一个mgr节点服务,然后关闭其他节点mgr服务。
设置dashboard 端口和IP
# (指定集群dashboard的访问端口。可以不用配置,默认7000端口。)
# ceph config-key set mgr/dashboard/server_addr $IP (指定集群 dashboard的访问IP)
服务重启:
# systemctl restart ceph-mgr@mon_mgr
更新:
mimic 版 dashboard 安装
1、添加mgr 功能
# ceph-deploy mgr create node1 node2 node3
2、开启dashboard 功能
# ceph mgr module enable dashboard
3、创建证书
# ceph dashboard create-self-signed-cert
4、创建 web 登录用户密码
# ceph dashboard set-login-credentials user-name password
5、查看服务访问方式
# ceph mgr services
谢谢