Common issues and how to fix them
If the installer shows "INSTALLATION COMPLETE (Manual Mode)" or "NSSM DOWNLOAD FAILED", the Windows service couldn't be created.
The service wrapper (NSSM) failed to download, usually due to firewall or antivirus blocking the download.
iwr -useb https://managedbyai.dev/install.ps1 | iex; Install-Atlas YOUR_API_KEY
If the service still won't install, you can run Atlas manually:
& "C:\Program Files\Atlas\atlas-agent.exe" daemon -c "C:\ProgramData\Atlas\config.yaml"
Keep this PowerShell window open. Atlas will run until you close it.
The service was created but won't start.
Get-Service AtlasAgent
Start-Service AtlasAgent
Get-Content "C:\ProgramData\Atlas\atlas-stderr.log" -Tail 50
C:\ProgramData\Atlas\config.yamlatlas-ws.managedbyai.dev on port 443Atlas is running but your server doesn't show in the dashboard.
Get-Service AtlasAgent
Should show Status: Running
Get-Content "C:\ProgramData\Atlas\atlas-stderr.log" -Tail 20
Look for "connected" or error messages.
Get-Content "C:\ProgramData\Atlas\config.yaml"
Make sure api_key matches the key from your dashboard.
Test-NetConnection atlas-ws.managedbyai.dev -Port 443
Should show TcpTestSucceeded: True
sudo systemctl status atlas-daemon
sudo journalctl -u atlas-daemon -n 50
sudo systemctl restart atlas-daemon
cat /etc/atlas/config.yaml
Verify your API key is correct.
The installer must be run with sudo:
curl -sL https://managedbyai.dev/install.sh | sudo bash -s -- YOUR_API_KEY
Error: "Invalid API key" or "Rejected API key"
atlas_)Atlas can't connect to the relay server.
Atlas needs outbound access to:
atlas-ws.managedbyai.dev port 443 (WebSocket)managedbyai.dev port 443 (HTTPS for updates)If you're behind a corporate proxy, Atlas may not work. Contact your IT team to allow the above domains.
& "C:\Program Files\Atlas\nssm.exe" stop AtlasAgent & "C:\Program Files\Atlas\nssm.exe" remove AtlasAgent confirm Remove-Item -Recurse "C:\Program Files\Atlas" Remove-Item -Recurse "C:\ProgramData\Atlas"
sudo systemctl stop atlas-daemon sudo systemctl disable atlas-daemon sudo rm /usr/local/bin/atlas-agent sudo rm /etc/systemd/system/atlas-daemon.service sudo rm -rf /etc/atlas
sudo launchctl unload /Library/LaunchDaemons/dev.managedbyai.atlas.plist sudo rm /Library/LaunchDaemons/dev.managedbyai.atlas.plist sudo rm /usr/local/bin/atlas-agent sudo rm -rf /etc/atlas
Email us at [email protected] or use the chat on our homepage.