Hi, I want to know the editor UI is running on port 8080 or 8081 so I want to change the editor UI port as I want, it will be run on port 5000 or 5001 like that so where do I need to change…
Hey @niteshnigam,
This really depends on how you are running n8n. If you are running the docker installation, you can change it either by:
- modifying the
docker-compose.ymlfile to redirect port 5678 to a different port (see entryservices:n8n:ports:) - modifying the
docker-compose.ymlfile to to use a different port and then redirect that port (see entriesservices:n8n:environment:N8N_PORT)
If you are using the regular install version, you can set the environment variable N8N_PORT to the port value you wish to use or create a .env file with a N8N_PORT option.
2 Likes