ceph dashbord配置
时间: 2023-07-11 22:46:27 浏览: 122
1.2配置参考.pdf
要配置 Ceph Dashboard,需要执行以下步骤:
1. 确认 Ceph 集群已经安装并正常运行。
2. 安装 Ceph Dashboard:
```shell
sudo apt-get install ceph-mgr-dashboard
```
3. 配置 Ceph Dashboard:
在 ceph.conf 文件中添加以下内容:
```
[global]
mgr_modules = dashboard
```
如果想要使用 SSL/TLS 进行加密通信,则需要为 Ceph Dashboard 生成证书。可以使用以下命令来生成自签名证书:
```shell
sudo ceph dashboard create-self-signed-cert
```
然后将证书文件复制到 /etc/ceph/ 目录下。
4. 启动 Ceph Dashboard:
```shell
sudo systemctl enable ceph-mgr-dashboard.service
sudo systemctl start ceph-mgr-dashboard.service
```
然后就可以通过浏览器访问 Ceph Dashboard 了。默认情况下,Ceph Dashboard 的地址为 https://<ceph-mgr-node>:8443。
如果使用了 SSL/TLS 加密通信,则需要在浏览器中信任该证书才能访问 Ceph Dashboard。
阅读全文