美文网首页
删除pool error

删除pool error

作者: Joncc | 来源:发表于2020-05-26 13:52 被阅读0次

    删除pool的时候提示下面的错误:

    [root@node205 /etc/ganesha]# ceph osd pool rm nfs-ganesha nfs-ganesha  --yes-i-really-really-mean-it-not-faking
    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 字段所致,解决办法就是到mon节点进行相应的设置

    解决方法:
    注:1-3步的操作必须在mon节点上执行

    1. 打开mon节点的配置文件:
    [root@node1 ceph]# vi /etc/ceph/ceph.conf 
    
    1. 在配置文件中添加如下内容:
    [mon]
    mon allow pool delete = true
    
    1. 重启ceph-mon服务:
    [root@node1 ceph]# systemctl restart ceph-mon.target
    

    然后删除

    [root@node205 /etc/ganesha]# ceph osd pool rm nfs-ganesha nfs-ganesha  --yes-i-really-really-mean-it-not-faking
    pool 'nfs-ganesha' removed
    

    相关文章

      网友评论

          本文标题:删除pool error

          本文链接:https://www.haomeiwen.com/subject/zpnmahtx.html