You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/troubleshooting.mdx
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1079,12 +1079,14 @@ Blocked by: ssh`.
1079
1079
1080
1080
Current NemoClaw detects this case and kills the orphaned SSH process automatically before retrying the port check.
1081
1081
If you see the error on an older release, identify the SSH process.
1082
-
Stop it only after fresh listener output confirms that your user owns the process, its command line is the stale SSH port forward for local port `18789`, and it has no active terminal or file transfer:
1082
+
Use fresh listener output to confirm that your user owns the process and that it still listens on local port `18789`:
1083
1083
1084
1084
```bash
1085
1085
sudo lsof -i :18789 -sTCP:LISTEN -P -n
1086
1086
```
1087
1087
1088
+
Inspect the process separately with `ps -p <PID> -o user=,args=`.
1089
+
Stop it only when the owner is your user, the command line is the stale SSH port forward for local port `18789`, and no active terminal or file-transfer session uses that process.
1088
1090
Repeat the listener check immediately before you signal only the PID from that fresh result.
1089
1091
Then re-run `$$nemoclaw onboard`.
1090
1092
@@ -2970,7 +2972,7 @@ Run `fix-coredns.sh` to point CoreDNS at the container gateway IP instead, then
2970
2972
### `k3s` cannot find a freshly built image
2971
2973
2972
2974
After building a new sandbox image, `k3s` inside the gateway container sometimes fails to pull it even though the image exists on the host.
2973
-
Remove the gateway registration, then rerun setup.
2975
+
Remove the gateway registration, then resume onboarding.
2974
2976
If a privileged host gateway remains, do not use a host-wide process match.
2975
2977
Verify its live owner, exact gateway name and port, command line, PID file, runtime marker, and loaded sandbox namespace immediately before you stop it.
0 commit comments