博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos6.4 ceph安装部署之cephFS
阅读量:6828 次
发布时间:2019-06-26

本文共 893 字,大约阅读时间需要 2 分钟。

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 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/)

posted on
2014-11-13 18:33 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/4095636.html

你可能感兴趣的文章
android手机root后的安全问题
查看>>
bat改ip
查看>>
SpringBoot之在Servlet2.5容器中部署war应用
查看>>
jackson 输出json到控制台
查看>>
项目申请文档提纲
查看>>
加密解密第二章:ollydbg用法
查看>>
百万PV网站架构
查看>>
N26-第四周作业
查看>>
svn服务器搭建
查看>>
在vmware安装Ubuntu桌面软件
查看>>
Ubuntu14.04使用Remastersys打包整个镜像制作iso
查看>>
MySQL之用户和权限管理
查看>>
常用的命令的使用方法
查看>>
yum命令使用方法
查看>>
使用HeartBeat实现高可用HA的配置过程详解
查看>>
最常用的四种大数据分析方法
查看>>
ajax https请求返回json数据
查看>>
convenience - 便利构造函数
查看>>
golang 碎片整理之 结构体
查看>>
Linux常用命令(个人博客)
查看>>