Raymond Raymond

Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p]

event 2021-09-10 visibility 4,052 comment 0 insights toc
more_vert
insights Stats
toc Table of contents
Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p]

When developing Azure Functions with .NET 5 in Visual Studio 2019, the following error pops out:

2021091015601-image.png

Port 7071 is unavailable. Close the process using that port, or specify another port using --port [-p].

The cause of the error is obvious: the default port is unavailable either because of firewall settings or used by another program. Thus to fix the problem, the easiest approach is to change the default port.

Change the default port

For the latest Visual Studio 2019, the integration with Azure Functions with .NET 5 is not great based on my experience and I could not directly change the Application Arguments to make it work.

Thus, I've used command line to run the function locally with port specified via argument --port:

func host start --verbose --port 11000
More from Kontext
comment Comments
No comments yet.

Please log in or register to comment.

account_circle Log in person_add Register

Log in with external accounts