Skip to main content
Solved

How to change block port, port 9001 is already taken


I’m trying to create a custom block, but when I run:

block run

I get:

Error: listen EACCES: permission denied 0.0.0.0:9001

I’ve checked and there’s a system task already listening to this port, so I’m not able to just kill it.
Is there a way to change the listening port so that I can make this work?

Best answer by Billy_Littlefie

Hi @wbaleroni

Sorry you’ve been running into issues! I would’ve expected the CLI to detect the collision and prompt you for another port, but I think you should be able to work around this by another means: the default port can be configured using the default-port argument, e.g.

block run --default-port 9002

Hope this helps!

View original
Did this topic help you find an answer to your question?

3 replies

Forum|alt.badge.img+4

Hi @wbaleroni

Sorry you’ve been running into issues! I would’ve expected the CLI to detect the collision and prompt you for another port, but I think you should be able to work around this by another means: the default port can be configured using the default-port argument, e.g.

block run --default-port 9002

Hope this helps!


  • New Participant
  • 1 reply
  • September 14, 2020
Billy_Littlefie wrote:

Hi @wbaleroni

Sorry you’ve been running into issues! I would’ve expected the CLI to detect the collision and prompt you for another port, but I think you should be able to work around this by another means: the default port can be configured using the default-port argument, e.g.

block run --default-port 9002

Hope this helps!


I had the same issue; 9001 was taken by System - thanks!


Forum|alt.badge.img+4
  • Inspiring
  • 8 replies
  • July 28, 2023

block run --port=<port number> is the correct command to change the default port number


Reply