Lxd won't start after reboot

after restarting my server lxd stopped working. in the logs i can see following line

Error: Bind network address: listen tcp 10.35.2.1:8443: bind: cannot assign requested address

this address is obviously wrong, but i cannot change it because “lxc config set” command hangs

Easiest way around it is to temporarily make the address valid again.
sudo ip -4 a add dev lo 10.35.2.1/32 should do the trick

thanks. I failed to mention that I’m using clustering (but with single member) and ovn networking. Turned out that cluster address was wrong. I changed it using sqlite directly in database. Seemed to help, but then there were similar issues regarding ovn (something about dqlite connection). In the end I had to scorch it.

but your solution sounds like might have helped :slight_smile: