本文主要是介绍Ubuntu 18.04.5 安装 Ceph mimic 13.2.10 CephFS 自动挂载,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Ubuntu 18.04.5 安装 Ceph mimic 13.2.10 CephFS 自动挂载
- 1,CephFS 内核挂载
- 2,CephFS 开机自动挂载
1,CephFS 内核挂载
- 查看
key
,保存到/etc/ceph/admin.secret
ceph auth export client.admin
- 查看mon
ceph mon dump
- 内核挂载
mount -t ceph 192.168.1.3:6789,192.168.1.4:6789,192.168.1.5:6789:/ /cephfs/ -o name=admin,secretfile=/etc/ceph/admin.secret
2,CephFS 开机自动挂载
vim /etc/fstab
[{ipaddress}:{port}]:/ {mount}/{mountpoint} ceph [name=username,secret=secretkey|secretfile=/path/to/secretfile],[{mount.options}]
192.168.1.3:6789,192.168.1.4:6789,192.168.1.5:6789:/ /cephfs ceph name=admin,secretfile=/etc/ceph/admin.secret,noatime,_netdev 0 2
参考:
- Mount CephFS using Kernel Driver
- 使用fstab进行挂载
- 开机自动挂载
这篇关于Ubuntu 18.04.5 安装 Ceph mimic 13.2.10 CephFS 自动挂载的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!