[Ceph]pool 删除 Error EPERM: pool deletion is disabled; you must first set the mon_allow_pool_delete config option to true before you can destroy a pool


# 修改配置文件添加
[mon]
mon allow pool delete = true

# 推送配置
[root@ceph1 ceph-deploy]# ceph-deploy --overwrite-conf config push ceph1 ceph2 ceph3

# 重启所有节点mon
for i in {1..3}
do ssh ceph${i} "\
systemctl restart ceph-mon.target
"
done

# 删除pool一定要如下2步
[root@ceph1 ceph-deploy]# ceph osd pool rm hddpool --yes-i-really-really-mean-it
Error EPERM: WARNING: this will *PERMANENTLY DESTROY* all data stored in pool hddpool.  If you are *ABSOLUTELY CERTAIN* that is what you want, pass the pool name *twice*, followed by --yes-i-really-really-mean-it.
[root@ceph1 ceph-deploy]# ceph osd pool rm hddpool hddpool --yes-i-really-really-mean-it
pool 'hddpool' removed

END


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM