ceph-deploy部署client

如图,要使用ceph,需要在使用的服务器上安装ceph

ceph-deploy部署client_第1张图片在集群的admin节点/etc/hosts添加
192.168.173.41 client01

客户端hosts
192.168.183.11 ceph01
192.168.183.12 ceph02
192.168.183.13 ceph03
192.168.173.41 client01
yum配置如上一篇文章配置,都是阿里云镜像

在admin节点通过ceph-deploy安装ceph
到客户端client01

ceph-deploy install client01

同步配置文件和ceph.client.admin.keyring到client

ceph-deploy admin client01

创建块设备

rbd create hank_data --conf /etc/ceph/ceph.conf --size 200G --image-feature layering  -k /etc/ceph/ceph.client.admin.keyring -p sata-pool

映射块设备

rbd map hank_data --name client.admin  --conf /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring -p sata-pool

格式化并挂载

mkfs.xfs  /dev/rbd/sata-pool/hank_data
mount -t xfs /dev/rbd/sata-pool/hank_data /ceph-block-data

参考:https://docs.ceph.com/docs/master/start/quick-rbd/

你可能感兴趣的:(#,storage)