#yyds干货盘点#ceph安装可视化dashboard
Posted 峰啊疯了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了#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的主要内容,如果未能解决你的问题,请参考以下文章