【教程】proxmox7 安裝 集群配置 ceph配置 pbs備份配置
相關(guān)操作視頻:



1、制作啟動盤,工具rufus
官網(wǎng):https://rufus.ie/zh/
知乎上的操作介紹:https://zhuanlan.zhihu.com/p/454872391
ISO鏡像從官網(wǎng)下就完了:https://www.proxmox.com/en/downloads
2、系統(tǒng)安裝









優(yōu)化一下BBR
修改sysctl.conf
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
保存生效
sysctl -p
檢測是否已啟用bbr模塊
lsmod | grep bbr
修改一下debian源
vi /etc/apt/sources.list?
dd刪了原來的東西 換成清華的源
deb https://mirrors.tuna.tsinghua.edu.cn/debian bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
修改一下pve源
vi /etc/apt/sources.list.d/pve-enterprise.list
dd刪了原來的東西 換成科大的源
deb https://mirrors.ustc.edu.cn/proxmox/debian/pve bullseye pve-no-subscription
更新一下
apt update && apt upgrade -y

3、集群配置








4、ceph配置
ceph服務安裝,建議進命令行,跑個tmux什么的后臺跑命令就行,如果實在太慢,可以搜一下修改pveceph的源方法
pveceph install
執(zhí)行完成后,定義一下ceph服務的網(wǎng)絡(luò)
pveceph init --network 10.68.68.0/24
再在各個節(jié)點裝上mon
pveceph createmon
基本就可以走pve界面進行配置了

為了集群性能好一下,可以使用ssd,nvme硬盤做db數(shù)據(jù)盤和wal數(shù)據(jù)盤,大小和比例根據(jù)自己的機械盤大小,按照官網(wǎng)推薦比例配置上就行。




這個時候就可以做個基本的測試了,新建一個系統(tǒng)存放于ceph集群中,操作從A主機遷移至B主機,以及斷電宕機熱遷移了(此處需在數(shù)據(jù)中心處配置HA)

5、pbs 備份系統(tǒng)配置
pbs安裝和pve基本一樣,這里就不單獨介紹了,安裝后web管理地址:https://ip:8007









