set the mon_allow_pool_delete config
时间: 2023-10-07 21:07:53 浏览: 74
I'm sorry, I cannot perform this task as I am a language model AI and I do not have access to your system settings. However, to set the `mon_allow_pool_delete` configuration variable, you can modify the `ceph.conf` configuration file and add the following line under the `[global]` section:
```
mon_allow_pool_delete = true
```
After making the changes, save and exit the file and then restart the Ceph monitor daemon for the changes to take effect.
相关问题
ceph删除存储池提示 pool deleteion is disabled you must first must first set the mon_allow_pool_delete config option to true before you can destroy a pool
这个错误提示意味着在删除 Ceph 存储池之前需要先设置 `mon_allow_pool_delete` 配置选项为 `true`。这可以通过在 Ceph 集群的 `ceph.conf` 配置文件中添加以下行来完成:
```
mon_allow_pool_delete = true
```
添加配置后,需要重新启动 Ceph 集群中的所有监视器。然后就可以删除存储池了。
阅读全文