Ceph常用命令-卷延迟删除

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

查看指定pool中的卷:

rbd ls -p {pool_name}

例如:
#rbd ls -p images
lun

将卷丢到回收站:

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

例如:
#rbd trash move lun -p images

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

rbd trash list/ls -p {pool_name}

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

将回收站的卷还原(ID为上述 rbd trash list查出的ID):

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

 

转载于:https://my.oschina.net/u/2439406/blog/1535035

你可能感兴趣的:(Ceph常用命令-卷延迟删除)