this post was submitted on 03 Apr 2026
20 points (95.5% liked)

homeassistant

19071 readers
41 users here now

Home Assistant is open source home automation that puts local control and privacy first.
Powered by a worldwide community of tinkerers and DIY enthusiasts.

Home Assistant can be self-installed on ProxMox, Raspberry Pi, or even purchased pre-installed: Home Assistant: Installation

Discussion of Home-Assistant adjacent topics is absolutely fine, within reason.
If you're not sure, DM @GreatAlbatross@feddit.uk

founded 2 years ago
MODERATORS
 

I'm thinking about getting started using Docker and an older Raspberry Pi. I'm already hosting a grafana service on it, so It can't be fully dedicated to ha. So curious what everyone is using.

you are viewing a single comment's thread
view the rest of the comments
[–] Cyber@feddit.uk 2 points 4 days ago (1 children)

It's now running as a VM in ProxMox on a pair of Lenovo M710q mini PCs

So, have you got High Availability setup? If so, I'd like to know more about that part...

[–] llamatron@lemmy.world 1 points 4 days ago (3 children)

So my plan had been to set up a pair of ProxMox hosts, use Ceph to do the shared storage and use HA so VMs could magically move around if a host died. However, I discovered Ceph and HA need a minimum of 3 hosts. HA can be done if you set up a Pi or some other 3rd host that can act as the 3rd vote in the event of a failure but as I didn't have Ceph I've not bothered trying.

I've read Ceph can work on 2 but not well or reliably.

I might setup a 3rd host some day but it seems a bit of a waste as I just don't need that amount of resources for what I'm running.

And I should have known really, I've a bit of a background in VMware, albeit at the enterprise level so I've never had to even think about 2 or 3 node clusters.

[–] GreatAlbatross@feddit.uk 1 points 5 hours ago

I hit this stumbling block.
And I don't quite want to go the whole hog/headache of HA.
My solution was to run warm-spare: Once a week the VM can be synced to the second box, but never powered on.
And HA backups are pretty good anyway, it doesn't take long to bring it back.

[–] Cyber@feddit.uk 2 points 3 days ago (1 children)

Ah, ok.

Yep, I'm in a similar situation... I have a few VMs, but not enough for lots of failover infrastructure... (redundant switches, etc)

I was thinking you might be just cloning 1 device to the other or something.

[–] llamatron@lemmy.world 2 points 3 days ago

Oh I have a pair of D-Link switches (again off ebay) that are stacked together. My router, NAS and both ProxMox hosts have LACP connections to both. And my home WiFi is a couple Aruba IAPs, one on each switch. So if I lose a switch then most things will keep running.

[–] tofu@lemmy.nocturnal.garden 2 points 4 days ago (2 children)

You can do HA in Proxmox with ZFS replication instead of Ceph. Third device something else as you said. It's what I'm doing.

[–] llamatron@lemmy.world 1 points 2 days ago (1 children)

You don't happen to know of a guide on how to set this up? All I've found so far has told me that ZFS isn't meant to mirror over network.

Or do you mean how you can enable replication on a VM?

[–] tofu@lemmy.nocturnal.garden 2 points 2 days ago

You can enable replication, and once you have the VM disk replicated, you can enable High Availability. Open the VM in the webinterface, click "More" at bottom right, and select "Manage HA".

[–] llamatron@lemmy.world 2 points 4 days ago

Thanks, I'll look into it.