摘要:
删除pool提示错误 root@ceph01:/etc/ceph-cluster# ceph osd pool delete volumes volumes --yes-i-really-really-mean-it Error EPERM: pool deletion is disabled; y 阅读全文
摘要:
这里涉及到可变类型和不可变类型。 可变类型:列表,字典,集合 不可变:数字,字符串,元祖 先看一下不可变类型的运算: +=运算 >>> a, b = 1, 2 >>> a1 = a >>> a += b >>> a 3 >>> a1 1 =+运算 >>> a, b = 1, 2 >>> a1 = a 阅读全文