ceph如何增删改查的管理文件

1.创建 Ceph 存储库文件

sudo tee /etc/yum.repos.d/ceph.repo <<EOF
[ceph]
name=Ceph packages for $basearch
baseurl=https://download.ceph.com/rpm-pacific/el8/\$basearch/
enabled=1
gpgcheck=1
type=rpm-md
gpgkey=https://download.ceph.com/keys/release.asc

[ceph-noarch]
name=Ceph noarch packages
baseurl=https://download.ceph.com/rpm-pacific/el8/noarch/
enabled=1
gpgcheck=1
type=rpm-md
gpgkey=https://download.ceph.com/keys/release.asc
EOF

2.安装 epel-release​ 和 ceph-fuse​

sudo yum install epel-release
sudo yum update
sudo yum install ceph-fuse

3.将配置文件从ceph机器scp到目标机器 /etc/ceph下

4.创建挂载点

sudo mkdir -p /mnt/ceph

5.使用ceph-fuse挂载

sudo ceph-fuse -m <monitors> /mnt/ceph
例如:
sudo ceph-fuse -m 192.168.1.100:6789 /mnt/ceph

6.卸载挂载点

sudo umount /mnt/ceph
相关推荐
学Linux的语莫8 天前
负载均衡,高可用,监控服务搭建总结
linux·服务器·分布式·ceph·lvs
运维小文9 天前
cephFS的使用以及K8S对接cephFS
ceph·云原生·容器·kubernetes·对象存储·cephfs
学Linux的语莫12 天前
ceph集群搭建,ceph块存储,文件存储,对象存储
linux·服务器·分布式·ceph
Rverdoser12 天前
K8S对接ceph的RBD块存储
ceph·容器·kubernetes
学Linux的语莫16 天前
Ceph对象存储
linux·运维·服务器·ceph
q_9716 天前
ceph基本概念
ceph
学Linux的语莫17 天前
Ceph文件存储
linux·运维·服务器·网络·ceph
学Linux的语莫17 天前
ceph相关的命令
linux·服务器·ceph
运维小文18 天前
ceph的存储池管理
ceph·云原生·对象存储·存储·分布式存储·cephfs
学Linux的语莫18 天前
Ceph分布式存储集群搭建
linux·服务器·ceph·云计算