henrygd / beszel

Lightweight server monitoring hub with historical data, docker stats, and alerts.
MIT License
3.15k stars 98 forks source link

ARM server and Ipv6 only server issues #306

Open kattocloud opened 12 hours ago

kattocloud commented 12 hours ago

Binary scripts don't seem to automatically determine the system kernel and install services based on a specific system kernel, which is problematic for ARM server support! Also for Ipv6 only servers, it won't go live after installation!

henrygd commented 4 hours ago

If the ipv6 problem is related to #288 then it will be fixed in the next release.

You can also build a binary with that fix by cloning the repo and running make build-agent OS=linux ARCH=arm in the beszel directory.

As for the install scripts, it should detect the proper architecture automatically. Is it downloading the wrong binary in your case?

What is your output of this command:

uname -m | sed 's/x86_64/amd64/' | sed 's/armv7l/arm/' | sed 's/aarch64/arm64/'