Ceph 块存储 创建的image 映射成块设备
将创建的volume1映射成块设备
[root@mysql-server ceph]# rbd map rbd_pool/volume1 rbd: sysfs write failed RBD image feature set mismatch. You can disable features unsupported by the kernel with "rbd feature disable rbd_pool/volume1 object-map fast-diff deep-flatten".
原因:
因为rbd镜像的一些特性,OS kernel并不支持,所以映射报错,根据上面的报错提示执行这一条命令
[root@mysql-server ceph]# rbd feature disable rbd_pool/volume1 object-map fast-diff deep-flatten
继续将创建的volume1映射成块设备
[root@mysql-server ceph]# rbd map rbd_pool/volume1
/dev/rbd0 这个就是映射成功的块设备,可以自由分区格式化了
本文来自博客园,作者:xiao智,转载请注明原文链接:https://www.cnblogs.com/yuwen01/p/16564502.html