1,ceph fileSystem

centos6.4 ceph安装部署之cephFS

centos6.4 ceph安装部署之cephFS

using the mounted Ceph FS filesystem

centos6.4 ceph安装部署之cephFS

centos6.4 ceph安装部署之cephFS

centos6.4 ceph安装部署之cephFS

当我们部署好ceph store cluster(monitor,metadata,object store daemon)
centos6.4 ceph安装部署之cephFS

centos6.4 ceph安装部署之cephFS

centos6.4 ceph安装部署之cephFS

当我们部署好ceph store cluster(monitor,metadata,object store daemon)
我们就可以mount挂载ceph 文件系统使用了
1,kernel driver
mount ceph fs as a kernel driver
sudo mkdir /mnt/mycephfs
sudo mount -t ceph {ip_address-of_monitor}:6789:/ /mnt/mycephfs
the ceph storage cluster uses authentication by default,specify a user name and the secretfile
sudo mount -t ceph ruiy.cc:6789:/ /mnt/mountPoint -o name=aceph,secretfile=aceph.secret

2,filesystem in user space(fuse)
mount ceph FS as a filesystem in user space (fuse)
sudo mkdir ~/mycephfs
sudo ceph-fuse -m ruiy.cc:6789 ~/mycephfs

the ceph storage cluster uses authentication by default,Specify a keystring if it is not in the default location (/etc/ceph/)

相关文章:

  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
  • 2021-08-08
  • 2022-02-21
猜你喜欢
  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2021-09-16
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案