FAQ¶
Getting Started¶
How do I install Frappe Manager?¶
See the Installation guide. The recommended method:
How do I update FM itself?¶
Run these two commands. The first updates the CLI; the second updates your benches and infrastructure to match.
Can I run multiple benches on the same machine?¶
Yes. Each bench is fully isolated. Create as many as you need and list them any time:
What happened to pyenv and nvm?¶
In v0.19.0 FM switched to uv for Python and fnm for Node. After upgrading, run:
Working with Benches¶
How do I install ERPNext?¶
At create time:
On an existing bench:
How do I check installed apps and versions?¶
How do I use a private GitHub repo for an app?¶
Provide the repo and token at create time:
Or export GITHUB_TOKEN in your shell before running fm create and FM will pick it up automatically.
How do I change the Administrator password?¶
Option A — reset and reinstall (destructive):
Option B — change password only, no data loss:
How do I reset a bench to a clean state?¶
fm reset mybench drops the bench database and reinstalls all apps from scratch. This is destructive — back up first.
How do I back up my bench?¶
From the Frappe web UI: Setup → Download Backup.
From the command line:
How do I run bench commands like migrate or build?¶
Use fm shell to open an interactive shell or run a single command:
How do I share my bench for testing?¶
Create a temporary public URL with ngrok. An auth token is required — sign up at ngrok.com if you don't have one.
Once a token is saved, future runs don't need it:
Workers & Restarts¶
How do I restart just the web server or just the workers?¶
Use fmx inside the container. It controls individual services without touching the rest of the bench:
# Restart only the web server (Gunicorn)
fm shell mybench -c "fmx restart frappe"
# Restart only the workers
fm shell mybench -c "fmx restart short-worker long-worker"
# Check what is currently running
fm shell mybench -c "fmx status"
How do I safely restart during a deployment without losing jobs?¶
Drain the queues first — workers finish their current jobs before anything restarts:
To also run bench migrate as part of the same step:
See the fmx guide for the full reference including maintenance mode.
Troubleshooting¶
My site won't load at mybench.localhost — what should I check?¶
Work through these in order:
- Docker is running:
docker ps - The bench is listed and running:
fm list - Ports 80 and 443 are free on the host (nothing else bound to them)
- On Windows 10, add
127.0.0.1 mybench.localhostto yourhostsfile if the.localhostdomain doesn't resolve
Docker images fail to pull from GHCR. What can I try?¶
Log out and back in to the GitHub Container Registry:
How do I enable HTTPS for my bench?¶
SSL requires that your domain points at the server and that ports 80 and 443 are reachable from the internet.
If you cannot open port 80 (for example on a corporate network), use DNS-01 challenge with Cloudflare instead. See the SSL guide for step-by-step instructions.