1,ceph fileSystem
using the mounted Ceph FS filesystem
当我们部署好ceph store cluster(monitor,metadata,object store daemon)
当我们部署好ceph store cluster(monitor,metadata,object store daemon)
我们就可以mount挂载ceph 文件系统使用了1,kernel drivermount ceph fs as a kernel driversudo mkdir /mnt/mycephfssudo mount -t ceph {ip_address-of_monitor}:6789:/ /mnt/mycephfsthe ceph storage cluster uses authentication by default,specify a user name and the secretfilesudo mount -t ceph ruiy.cc:6789:/ /mnt/mountPoint -o name=aceph,secretfile=aceph.secret2,filesystem in user space(fuse)mount ceph FS as a filesystem in user space (fuse)sudo mkdir ~/mycephfssudo ceph-fuse -m ruiy.cc:6789 ~/mycephfsthe ceph storage cluster uses authentication by default,Specify a keystring if it is not in the default location (/etc/ceph/) posted on 2014-11-13 18:33 阅读( ...) 评论( ...)