Has anyone been able to get an additional node to properly add? I'm trying to add a 2nd system that has a GPU vs my gateway (running on a VM) to do some additional tasks. I'm not planning on running local models for much but would like to be able to run tasks against that system to utilize the GPU. The steps that I went through are:
- Initial gateway fully setup 2026.4.14
- Install the latest package on the 2nd node
- ran the install node wizard which failed due to trying to check for a systemd script that doesn't exist
openclaw node install --display-name NAME --host HOST --port 18789
Node install failed: Error: systemctl enable failed: Failed to enable unit: Unit file openclaw-gateway.service does not exist
This is the error when it instantly fails node host gateway connect failed: pairing required gateway connect failed: GatewayClientRequestError: pairing required node host gateway closed (1008): pairing requiredI was able to get past this by manually enabling and starting the service but i didn't generate any pairing requests
4) manually ran the node run command with the host and port, this starts but fails saying that connecting to wss over plain text is insecure and to export OPENCLAW_ALLOW_INSECURE_PRIVATE_WS=1 to get past this. Since i'm testing all local i exported the variable.
Now its failing immediately saying that pairing is required but following the logs i don't see anything in the logs saying it even attempted.
openclaw node run --host ws://HOST --port 18789
I tried both ws:// and wss:// with the same results.
Other things i tried, added both the ws and wss entries to allowed orgins and trusted proxies, changed the binding to lan vs loopback (standard control ui exposure is via nginx with tls). I manually created the systemd service from different posts online vs using what gets generated but nothing seems to work.