> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equa.cc/llms.txt
> Use this file to discover all available pages before exploring further.

# Troubleshooting

# Troubleshooting

## First 60 seconds

Run these in order:

```bash theme={null}
equabot status
equabot status --all
equabot gateway probe
equabot logs --follow
equabot doctor
```

If the gateway is reachable, deep probes:

```bash theme={null}
equabot status --deep
```

## Common “it broke” cases

### `equabot: command not found`

Almost always a Node/npm PATH issue. Start here:

* [Install (Node/npm PATH sanity)](/install#nodejs--npm-path-sanity)

### Installer fails (or you need full logs)

Re-run the installer in verbose mode to see the full trace and npm output:

```bash theme={null}
curl -fsSL https://equabot.com/install.sh | bash -s -- --verbose
```

For beta installs:

```bash theme={null}
curl -fsSL https://equabot.com/install.sh | bash -s -- --beta --verbose
```

You can also set `EQUABOT_VERBOSE=1` instead of the flag.

### Gateway “unauthorized”, can’t connect, or keeps reconnecting

* [Gateway troubleshooting](/gateway/troubleshooting)
* [Gateway authentication](/gateway/authentication)

### Control UI fails on HTTP (device identity required)

* [Gateway troubleshooting](/gateway/troubleshooting)
* [Control UI](/web/control-ui#insecure-http)

### `docs.equa.cc` shows an SSL error (Comcast/Xfinity)

Some Comcast/Xfinity connections block `docs.equa.cc` via Xfinity Advanced Security.
Disable Advanced Security or add `docs.equa.cc` to the allowlist, then retry.

* Xfinity Advanced Security help: [https://www.xfinity.com/support/articles/using-xfinity-xfi-advanced-security](https://www.xfinity.com/support/articles/using-xfinity-xfi-advanced-security)
* Quick sanity checks: try a mobile hotspot or VPN to confirm it’s ISP-level filtering

### Service says running, but RPC probe fails

* [Gateway troubleshooting](/gateway/troubleshooting)
* [Background process / service](/gateway/background-process)

### Model/auth failures (rate limit, billing, “all models failed”)

* [Models](/cli/models)
* [OAuth / auth concepts](/concepts/oauth)

### `/model` says `model not allowed`

This usually means `agents.defaults.models` is configured as an allowlist. When it’s non-empty,
only those provider/model keys can be selected.

* Check the allowlist: `equabot config get agents.defaults.models`
* Add the model you want (or clear the allowlist) and retry `/model`
* Use `/models` to browse the allowed providers/models

### When filing an issue

Paste a safe report:

```bash theme={null}
equabot status --all
```

If you can, include the relevant log tail from `equabot logs --follow`.
