key-networks / ztncui

ZeroTier network controller UI
GNU General Public License v3.0
1.52k stars 227 forks source link

ztncui on arm processor #80

Open Jarusss opened 2 years ago

Jarusss commented 2 years ago

Guys, does ztncui works on arm processors? I mean I know it works, but is there any problem with installing it? I want to update my old version to the newest one and I`m wondering if I will have problems on RPi or should I buy any Intel based processor (LattePanda or something)?

guideloom commented 2 years ago

I'm running on a NanoPi-NEO-Plus2, no issues.

Nifty-07 commented 1 year ago

Please advise how you installed ztncui on arm as I would like to run it on a raspberry pi (Debian).

I have not been able to find an arm compiled debian to download.

guideloom commented 1 year ago

Look for any arm based linux distro; armbian for example. This should work on Raspbian. Once the OS is installed: do git clone https://github.com/key-networks/ztncui follow the install instructions..

I use this as the service file. This assumes zerotier-one is already installed on the same system also as a service.

[Unit]
Description=Zerotier admin interface
After=network-online.target network.target zerotier-one.target
Wants=network-online.target zerotier-one.target

[Service]
Environment=NODE_PORT=3443
Type=simple
Restart=always
KillMode=process
WorkingDirectory=/usr/local/ztncui/src
ExecStart=/usr/bin/npm start

[Install]
WantedBy=multi-user.target
key-networks commented 1 year ago

Thanks, @guideloom, for posting that.