首页 > 其他分享 >Ceph安装部署

Ceph安装部署

时间:2022-09-06 12:36:50浏览次数:83  
标签:ceph 16g 部署 sudo apt Ceph https ubuntu18.04 安装

  Monitor  Mgr  Mds OSD Deploy
数量 2 2   4 1
CPU

8c

8c   4c 4c
Memory

16g

16g   16g 8g
硬盘 200g 200g   500g*3 200g
系统 ubuntu18.04 ubuntu18.04 ubuntu18.04 ubuntu18.04 ubuntu18.04

设置apt源

sudo -i
lsb_release -a
apt-cache madison ceph-common
wget -q -O- 'https://download.ceph.com/keys/release.asc' | sudo apt-key add -
sudo echo  'deb https://mirrors.tuna.tsinghua.edu.cn/ceph/debian-pacific/ bionic main' >> /etc/apt/sources.list
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
sed -i 's/https/http/g' /etc/apt/sources.list
apt update

标签:ceph,16g,部署,sudo,apt,Ceph,https,ubuntu18.04,安装
From: https://www.cnblogs.com/zyyang1993/p/16659429.html

相关文章

  • Git安装及密钥的生成以及如何查看秘钥文件夹位置
    一、Git下载安装及密钥生成1、Git下载到官网去下载2、Git安装(很简单),安装成功后,鼠标右键打开GitBash3、用户名邮箱注册$gitconfig--globaluser.name"user.name"$......
  • centos 编译安装mysql 报错:make[2]: *** [storage/perfschema/unittest/pfs_connect_a
    错误:/opt/install-files/Package/mysql-5.7.38/sql/rpl_binlog_sender.cc:828:undefinedreferenceto`user_var_entry::val_int(char*)const'collect2:error:ld......
  • 代码笔记24 windows+opencv4.5.5安装中出现的IPPICV: Download: ippicv_2020_win_inte
    1环境介绍:windows10,visualstudio2019,CMake,OPENCV4.5.5出现问题IPPICV:Download:ippicv_2020_win_intel64_20191018_general.zipTry1failedCMakeWarninga......
  • aarch安装docker
     操作系统:麒麟V10-server1、下载Dockeraarch版本docker下载地址:https://download.docker.com/linux/static/stable/aarch64/,根据需要下载对应的版本。 2、安装......
  • PyTorch 安装
    本机环境打开设备管理器,找到相应的显卡,查看本机是否支持GPU,如下图所示,这可以确定需要安装PyTorch是GPU还是CPU版本Anaconda安装Anaconda官网地址:https://www.a......
  • Linux 安装telnet
    一、安装telnet1、首先我们检测telnet-server的rpm包是否安装[root@localhost~]#rpm-qatelnet-server若无输入内容,则表示没有安装。linux的telnet-server.rpm默认......
  • ubuntu 22.04 安装gcc-7、g++-7
    ubuntu22.04安装gcc-7、g++-71、安装gcc-71.1添加镜像(base)root@FIB:~#vim/etc/apt/sources.list(base)root@FIB:~#tail-1/etc/apt/sources.listdeb[arch......
  • swoole 安装和简单实用
    Swoole是:PHP语言的高性能网络通信框架,提供了PHP语言的异步多线程服务器,处理异步任务,异步TCP/UDP网络客户端,异步MySQL,数据库连接池,AsyncTask,消息队列,毫秒定时器,异步文件读写......
  • 二进制部署k8s集群v1.23.9版本-17-安装minio
    17.1、准备minio镜像192.168.1.200操作dockerpullminio/minio:latestdockerimages|grepminiodockertage31e0721a96bharbor.qgutech.com/middleware/minio:lates......
  • python3下载及安装教程(Windows)
    Python目前已支持所有主流操作系统,在Linux,Unix,Mac系统上自带Python环境,一般默认装的是Python2版本,Windows系统上没有Pyhton环境,需要我们手动安装一下,现在一般都是python3......