I attempted to run my web service through visual studio. I faced an issue like :
---------------------------
Microsoft Visual Studio
---------------------------
Unable to launch the IIS Express Web server.
Failed to register URL "http://localhost:63591/" for site "xxxxxx" application
"/". Error description: The process cannot access the file because it is being
used by another process. (0x80070020)
---------------------------
OK
---------------------------
I saw the task manager and found that PID 4 is used by System and its Description is NT Kernel & System.
So I tried to stop the http service
.
All dependency services stopped. But I am facing an issue in stopping http service like
The service is starting or stopping. Please try again later.
So, I tried to stop and start the service manually. But the End process is disabled. It will be helpful if anyone could help with this issue
From https://www.davidsalter.co.uk/unable-to-launch-the-iis-express-web-server-error-0x80070020/
Error code 0x80070020
means ERROR_SHARING_VIOLATION
, which in the case of IIS Express (or IIS) means that the port that it is attempting to listen on is being used by another process.
Use the netstat
command to find out which application is using the port.
netstat -ao | findstr <port_number_to_search_for>
The a
parameter tells netstat to display all connections and listening ports.
The o
parameter tells netstat to display the process ID associated with the connection.
Running the above netstat command will produce output such as:
C:\>netstat -ao | findstr 4026
TCP 12.0.0.1:4026 cs-pc:4026 LISTENING 9544
The last number displayed (9544 here) is the process ID.