Docs/存储/ceph/p版本安装/1-环境准备.md

44 lines
No EOL
1.8 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1. 集群使用5台主机每台主机配置为4C8G共3块硬盘。1块200G SSD用作系统盘1块100GB SSD盘用作OSD1块100GB SATA盘用作OSD
```shell
# free -m
              total        used        free      shared  buff/cache   available
Mem:            7403         696        5089           9        1923        6706
Swap:           8191           0        8191
# cat /proc/cpuinfo |grep processor
processor       : 0
processor       : 1
processor       : 2
processor       : 3
# lsblk
NAME          MAJ:MIN RM  SIZE RO TYPE MOUNTPOINTS
sda             8:0    0  100G  0 disk
sr0            11:0    1 16.5G  0 rom  
nvme0n1       259:0    0  200G  0 disk
├─nvme0n1p1   259:1    0    2G  0 part /boot
└─nvme0n1p2   259:2    0  198G  0 part
 ├─vg00-root 253:0    0  120G  0 lvm  /
 └─vg00-swap 253:1    0    8G  0 lvm  [SWAP]
nvme0n2       259:3    0  100G  0 disk
```
2. OS 使用`openEuler 22.03 (LTS-SP1)`
```shell
# cat /etc/os-release
NAME="openEuler"
VERSION="22.03 (LTS-SP1)"
ID="openEuler"
VERSION_ID="22.03"
PRETTY_NAME="openEuler 22.03 (LTS-SP1)"
ANSI_COLOR="0;31"
```
3. OS 内核`5.10.0-136.34.0.110.oe2203sp1.x86_64`
```shell
# uname -r
5.10.0-136.34.0.110.oe2203sp1.x86_64
```
> 说明这里选择openeuler也是有理由的现在都强调自主可控哈openeuler也会发展的越来越好。
4. Ceph版本使用`Quincy 17.2.6`
> 说明openeuler yum源中默认版本为`Pacific 16.2.x`ceph在维护的版本[ceph活跃版本](https://docs.ceph.com/en/latest/releases/#active-releases)
5. docker与containerd版本分别为`docker-20.10.23``containerd-1.7.0`
> 说明openeuler 22.03自带的docker版本是`18.09`