Skip to main content

Nexigon Agent

Nexigon Agent runs on devices and connects them to Nexigon Hub.

Nexigon Agent is available for Linux, macOS, and Windows.

Installation and Setup​

info

For embedded Linux devices, we recommend using Rugix or Yocto to build full system images that include Nexigon Agent.

Download the most recent version of Nexigon Agent for your device:

Nexigon Agent should run as a service on a device. If you use systemd, you may use the following service file:

[Unit]
Description=Nexigon Agent
After=network.target

[Service]
Type=exec
PIDFile=/run/nexigon.pid
ExecStart=/usr/bin/nexigon-agent run
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nexigon.pid
TimeoutStopSec=5
KillMode=mixed
Restart=always
RestartSec=60s

[Install]
WantedBy=multi-user.target