标签:ceph rbd could not find modul
在进行本章的操作之前,要先完成基本集群的搭建,请参考http://blog.csdn.net/eric_sunah/article/details/40862215
实验的过程中,可以用虚拟机来作为ceph-client的节点,但是为了保证集群的稳定,不要在集群的节点上做下面的操作
通过 OS Recommendations 判断你的客户端的OS是否满足基本的要求.
在管理节点使用 ceph-deploy 在ceph-client 节点上安装ceph,假设该节点叫做cephclient.
ceph-deploy install cephclient
在管理节点使用 ceph-deploy
拷贝ceph的配置文件以及ceph.client.admin.keyring 到 cephclient上
ceph-deploy admin cephclient
ceph-deploy 会将keyring文件拷贝到 /etc/ceph目录下. 为了安全起见,可以对该文件设置恰当的权限(e.g., sudo chmod +r /etc/ceph/ceph.client.admin.keyring).
在cephclient节点上,创建一个块设备镜像
rbd create testdevice --size 40960 [-m {mon-IP}] [-k /path/to/ceph.client.admin.keyring]
在cephclient节点上,将镜像映射到块设备
sudo rbd map foo --pool rbd --name client.admin [-m {mon-IP}] [-k /path/to/ceph.client.admin.keyring]
在cephclient节点上格式化块设备
sudo mkfs.ext4 -m0 /dev/rbd/rbd/testdevice
挂载该设备.
sudo mkdir /mnt/ceph-block-devicesudo
sudo mount -t ext4 /dev/rbd/rbd/testdevice /mnt/ceph-block-devicesudo
cd /mnt/ceph-block-devicesudo
检查结果
Ceph实践总结之:Centos 下RBD块设备客户端的配置
标签:ceph rbd could not find modul
原文地址:http://blog.csdn.net/eric_sunah/article/details/41313383