Install-time errors
I have an Intel Mac — is /usr/local/bin/brew normal?
Yes. On Intel Macs (x86_64, 2020 and earlier), Homebrew installs to
/usr/local/ — not /opt/homebrew/ like it does on Apple Silicon
(M1 / M2 / M3 / M4). Both paths are official and fully supported.
FideliOS handles this automatically:
install.shsourcesbrew shellenvfrom whichever prefix the Homebrew installer chose (sobrew,node, andnpmare onPATHin the same install session).- The launchd service
PATH(written byfidelios service install) includes both/opt/homebrew/binand/usr/local/bin, so adapter CLIs (claude,codex,gh,git) resolve regardless of which Mac you’re on. @embedded-postgres/darwin-x64(Intel native) is published alongside@embedded-postgres/darwin-arm64— the embedded database runs natively on both architectures, no Rosetta.
fidelios --version works, you’re good.
command not found: fidelios after install
The npm install -g step put the binary somewhere not on your PATH.
Fix on macOS / Linux:
npm config get prefix — the output is where npm put fidelios. Add <prefix>/bin to your PATH.
xcode-select: no developer tools
macOS-only. Homebrew needs Apple’s Command Line Tools. Accept the install dialog that pops up and wait 5-10 minutes. Then re-run the install command.
Installer hangs on “Waiting for Docker daemon”
The Linux or Windows installer is waiting for Docker Desktop to finish starting. On first install Docker can take 1-2 minutes to boot. If it times out (120 s):- Windows: open Docker Desktop from the Start menu, wait for the whale icon in the system tray to be steady (not animated), re-run the install command.
- Linux:
sudo systemctl status docker— if inactive,sudo systemctl start dockerthen retry.
EACCES: permission denied during npm install -g
npm is trying to write to a root-owned directory. Don’t sudo — that creates more problems. Instead redirect npm globals to your home dir:
install.sh script does this automatically since v0.0.27 — if you hit this on a fresh install, update to the latest installer.
Postgres does not support running as root
You are running FideliOS under UID 0 (common in Docker/VM/cloud root-ssh). Since v0.0.31 FideliOS auto-enables embedded-postgres’s createPostgresUser=true path for root environments. If you’re on an older version:
Runtime errors
Port 3100 already in use
Something is already bound to port 3100 (maybe a previous FideliOS that didn’t shut down cleanly).Command not found in PATH: "claude" in heartbeat logs
The Claude adapter runs the claude CLI to execute agent runs. Install Claude Code (see Anthropic docs) and re-run:
PATH that includes ~/.claude/local/bin.
Service runs but heartbeats fail silently
Tail the log:ERROR: heartbeat execution failed. The message tells you which adapter CLI is missing. Install it, then either restart the service (launchctl kickstart -k gui/$(id -u)/nl.fidelios.server on macOS) or fidelios service install to regenerate the unit with the current PATH.
pending migrations loop
The server keeps restarting saying migrations are pending. Apply them explicitly:
Docker-specific
manifest unknown on docker pull
The GitHub Container Registry package is private. Ask the FideliOS team to make it public, or pull a specific version:
Container starts but browser can’t reach it
Check the port mapping:0.0.0.0:3100->3100/tcp. If not, the port is already taken on the host. Stop whatever is using 3100 (lsof -ti:3100 | xargs kill -9) and restart the container.
Dev mode (contributors only)
Auto-Restart toggle is on but agents still get killed on restart
Check you’re actually in dev mode:Mode: release, switch: fidelios service dev.
fidelios service dev fails with “Could not locate a FideliOS monorepo”
Either cd ~/fidelios first, or pass --repo:
Still stuck?
Open an issue at github.com/fideliosai/fidelios/issues with:- Your OS (
uname -aon macOS/Linux,systeminfoon Windows) - FideliOS version (
fidelios --version) - Full output of the failing command (redact any API keys)
- Tail of
~/.fidelios/instances/default/fidelios.log