Troubleshooting
Common issues and solutions for LobstaKit.
Docker is not installed
Run lobstakit install — it will offer to install Docker automatically.
Or install manually:
curl -fsSL https://get.docker.com | sh
sudo systemctl enable --now dockerDocker permission denied
If you see "permission denied while trying to connect to the Docker daemon":
sudo usermod -aG docker $USER
# Then log out and back inOr run LobstaKit as root:
sudo lobstakit installContainer exits immediately
Check the logs:
lobstakit logs
# or
docker logs lobstaCommon causes:
- Invalid API key — ensure
ANTHROPIC_API_KEYstarts withsk- - Port conflict — another service is using port 3000
- Insufficient memory — Lobsta needs at least 512 MB free
Gateway not responding
Run the doctor:
lobstakit doctorCheck if the port is open:
curl http://localhost:3000/healthIf the port is open but not responding, the container may be starting up (allow 10–30 seconds).
Can't access web dashboard
- Ensure LobstaKit web server is running:
lobstakit start - Check the port isn't blocked by a firewall:
sudo ufw allow 8080 - If binding to
0.0.0.0, access from another device via the host's IP address
Forgot web dashboard password
Delete the auth file and create a new password:
rm ~/.lobsta/auth.json
# Then visit the web dashboard — you'll be prompted to create a new passwordImage pull fails or times out
- Check internet connectivity:
curl -s https://ghcr.io - Pull timeout is 10 minutes. On slow connections, try again.
How to change the API key
Option 1 — CLI wizard:
lobstakit configOption 2 — Edit directly:
nano ~/.lobsta/.env
# Update the ANTHROPIC_API_KEY line
lobstakit restartOption 3 — Web dashboard:
- Go to
/setup - Update the API key field
- Save and restart
Updating
Update Lobsta
lobstakit updateUpdate LobstaKit itself
pip install --upgrade lobstakitBackup configuration
cp -r ~/.lobsta ~/.lobsta.backupUninstall
# Stop and remove container
docker rm -f lobsta
# Remove configuration (optional)
rm -rf ~/.lobsta
# Uninstall LobstaKit
pip uninstall lobstakit