2024-02-25 10:36:38 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# REF: https://www.youtube.com/watch?v=jAlzBm40onc
|
2024-02-25 10:38:37 -07:00
|
|
|
# This is when you really only have 2 nodes but need a 3rd vote for quorum
|
2024-02-25 10:39:46 -07:00
|
|
|
# Can setup debian vm with 512MB RAM OUTSIDE the cluster as long as its on the same LAN
|
2024-02-25 10:38:37 -07:00
|
|
|
|
|
|
|
# NOTE do not mix CPU types on host - all AMD or all Intel are OK
|
2024-02-25 10:36:38 -07:00
|
|
|
|
|
|
|
# do on all nodes in cluster
|
|
|
|
apt update
|
|
|
|
apt install -y corosync-qdevice
|
|
|
|
|
2024-02-25 10:38:37 -07:00
|
|
|
# TODO EDITME
|
2024-02-25 10:36:38 -07:00
|
|
|
pvecm qdevice setup 192.168.1.12 # vm on macpro, static ip
|
|
|
|
|
|
|
|
pvecm status
|