一箫一剑平生意,负尽狂名十五年。这篇文章主要讲述#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】
推荐阅读
- Linux快照利器(Timeshift,备份和还原效果杠杠的!)
- JAVA实现短网址服务的原理是什么()
- 使用Trib工具自动化部署Redis Cluster三主三从交叉复制集群#yyds干货盘点#
- #yyds干活盘点# 5 Css3 文本效果
- Set VM SCSI Controller Bus Sharing Mode
- # yyds干货盘点 # 手把手教你使用JavaScript打造一款扫雷游戏
- 通俗易懂的JDBC教程-JDBC与ORM发展与联系#私藏项目实操分享#
- 11-docker系列-docker之compose安装和相关命令
- 数据库之MySQL主从复制与读写分离