OpenClaw Issues
"openclaw command not found"
Solutions:
Check Node.js version:
Must be 22 or higher. If not, upgrade Node.js.
Reinstall OpenClaw:
curl -fsSL https://openclaw.ai/install.sh | bash
Verify PATH includes openclaw:
echo $PATH | grep openclaw
Restart your shell:
source ~/.bashrc # Linux/macOS
source ~/.zshrc # macOS (if using Zsh)
"Control UI won't open"
Solutions:
Check if gateway is running:
openclaw gateway status
Start it manually:
openclaw gateway --port 18789
Open http://127.0.0.1:18789/ in your browser
If port 18789 is in use:
openclaw gateway --port 18790
"Permission denied" errors
Solutions:
Run with sudo (not recommended):
Check home directory permissions:
"Docker image not found"
Solutions:
Verify Docker is running:
Check image name (case-sensitive):
"Cannot connect to Docker daemon"
Solutions:
Start Docker:
macOS: Open Docker Desktop
Linux: sudo systemctl start docker
Windows: Launch Docker Desktop
Add user to docker group (Linux):
"Disk space error"
Solutions:
Free up disk space and retry
"Lab output doesn't match the guide"
This is normal! Environments vary by OS, Docker version, library versions, etc.
What to do:
Compare the structure of your output (same files, similar sizes)
Check for error messages (those matter)
Re-run the command if it failed
Read the lab README.md for environment notes
Check the lab GitHub issues for known issues
"Command not found inside lab"
Solutions:
Verify you're inside the container:
Install missing dependencies per lab instructions
"Files disappear after exiting container"
Solution: Use volume mount to persist files:
"Cannot reach OpenClaw gateway"
Solutions:
Verify gateway is running and listening:
Check firewall allows port 18789:
Frequently Asked Issues
Q: My lab runs but produces different output
A: This is expected. Compare structure, check for errors, and verify prerequisites.
Q: Files are lost when I exit Docker
A: You didn't use -v flag. Use: docker run -it --rm -v $(pwd):/work ...
Q: OpenClaw wizard keeps crashing
A: Check ~/.openclaw/logs/ for error details. Try reinstalling.
Q: Discord integration not working
A: Ensure OAuth token is valid. Re-authorize in Control UI.
If these solutions don't work:
Check lab GitHub issues: https://github.com/lastcow/innoZverse-docs/issues
Join the community: https://discord.com/invite/clawd
Report a bug with details (OS, versions, error messages)
See Also: