#yyds干货盘点#ceph安装可视化dashboard

一箫一剑平生意,负尽狂名十五年。这篇文章主要讲述#yyds干货盘点#ceph安装可视化dashboard相关的知识,希望能为你提供帮助。
1.安装Dashboard

yum install -y ceph-mgr-dashboard -y



2.开启插件
ceph mgr module enable dashboard
ceph mgr module ls //查看组件




3.禁用SSL。
ceph config set mgr mgr/dashboard/ssl false
//必须禁用



4.配置监听IP。
ceph config-key put mgr/dashboard/server_addr 192.168.11.1
或者
ceph config set mgr mgr/dashboard/server_addr 192.168.11.1



温馨提醒
此处必须设置监控地址为0.0.0.0,而不能是直接IP地址,因为其监控的是所有本地地址包括IPV4和IPV6,同时也不能禁用IPV6地址。
5.配置监听端口。
ceph config-key put mgr/dashboard/server_port 8080
或者
ceph config set mgr mgr/dashboard/server_port 8080

//检查端口是否被占用
netstat -anp |grep 8080




6.设置用户登录。
ceph dashboard set-login-credentials admin admin



7.使用配置生效/失效。
ceph mgr module disable dashboard
ceph mgr module enable dashboard



8.通过查看ceph mgr services命令输出地址。
ceph mgr services

"dashboard": "http://ceph01:8080/"


9.访问Dashboard
curl 192.168.11.1:8080


外部浏览器访问,因为在虚拟机需要做转发
iptables -t nat -A PREROUTING -d 192.168.103.41 -p tcp --dport 8080 -j DNAT --to-destination 192.168.11.1:8080

【#yyds干货盘点#ceph安装可视化dashboard】

    推荐阅读