2024-08-12 14:43:40 +00:00
|
|
|
# Lenovo ThinkCentre Cluster
|
2024-08-12 10:01:13 +00:00
|
|
|
|
|
|
|
### Ausstattung:
|
|
|
|
|
|
|
|
* 5 x ThinkCentre M710q bis M920q
|
|
|
|
* 5 x 1TB Cruical NVME
|
|
|
|
* 100 GB Proxmox
|
|
|
|
* 400 GB Local LVM
|
|
|
|
* 400 GB CEPH
|
|
|
|
|
|
|
|
```
|
|
|
|
Device Start End Sectors Size Type
|
|
|
|
/dev/nvme0n1p1 34 2047 2014 1007K BIOS boot
|
|
|
|
/dev/nvme0n1p2 2048 2099199 2097152 1G EFI System
|
|
|
|
/dev/nvme0n1p3 2099200 209715200 207616001 99G Linux LVM
|
|
|
|
/dev/nvme0n1p4 209717248 1048578047 838860800 400G Linux filesystem
|
|
|
|
/dev/nvme0n1p5 1048578048 1953523711 904945664 431.5G Linux filesystem
|
|
|
|
```
|
|
|
|
|
|
|
|
### Tweaks:
|
|
|
|
|
2024-08-12 14:39:53 +00:00
|
|
|
* Intel E1000 Probleme mit ehttool beseitigen:
|
|
|
|
```
|
|
|
|
iface eno1 inet manual
|
|
|
|
post-up /usr/sbin/ethtool -K $IFACE tso off gso off 2> /dev/null
|
|
|
|
```
|
2024-08-12 11:23:35 +00:00
|
|
|
* Update auf die neueste Proxmox-Version
|
|
|
|
* Einrichten der no-subscription Repos
|
2024-08-12 14:43:40 +00:00
|
|
|
|
|
|
|
### Reihenfolge:
|
|
|
|
|
|
|
|
* Alle Nodes mit Proxmox installieren und auf den neuesten Stand updaten.
|
|
|
|
* vmbr0 einrichten: VLAN Aware! Evtl. ein eigenes VLAN für Corosync und CEPH einrichten, z.B VLAN Interface vmbr.100
|
|
|
|
* Auf dem ersten Node den Cluster erstellen und ggf. das VLAN 100 auswählen
|
2024-08-12 14:45:14 +00:00
|
|
|
* Testen ob der Cluster ordnungsgemäß funktioniert
|
|
|
|
|
|
|
|
### /etc/network/interfaces:
|
|
|
|
```
|
|
|
|
auto lo
|
|
|
|
iface lo inet loopback
|
|
|
|
|
|
|
|
iface eno1 inet manual
|
|
|
|
post-up /usr/sbin/ethtool -K $IFACE tso off gso off 2> /dev/null
|
|
|
|
|
|
|
|
auto vmbr0
|
|
|
|
iface vmbr0 inet static
|
|
|
|
address 192.168.177.2/21
|
|
|
|
gateway 192.168.179.1
|
|
|
|
bridge-ports eno1
|
|
|
|
bridge-stp off
|
|
|
|
bridge-fd 0
|
|
|
|
bridge-vlan-aware yes
|
|
|
|
bridge-vids 2-4094
|
|
|
|
|
|
|
|
auto vmbr0.2366
|
|
|
|
iface vmbr0.2366 inet static
|
|
|
|
address 10.23.66.2/24
|
|
|
|
#Corosync & CEPH
|
|
|
|
```
|