Ceph經常使用命令-卷延遲刪除

查看指定pool中的卷:rest

rbd ls -p {pool_name}

例如:
#rbd ls -p images
lun

將卷丟到回收站:code

rbd trash move/mv {images_name} -p {pool_name}

例如:
#rbd trash move lun -p images

查看回收站中的存放的卷:rem

rbd trash list/ls -p {pool_name}

例如:
#rbd trash list -p images
b422e3f2dba31 lun

將回收站的卷還原(ID爲上述 rbd trash list查出的ID):im

rbd trash restore {ID} -p {pool_name}

例如:
#rbd trash restore b422e3f2dba31 -p images

或者還原的同時,重命名
#rbd trash restore images/b422e3f2dba31 --image lun2

清除回收站的卷:命名

rbd trash remove/rm {ID} -p {pool_name}

例如:
#rbd trash remove b422e3f2dba31 -p images
Removing image: 100% complete...done
相關文章
相關標籤/搜索