skip to Main Content

I would like to know how to unmount nginx server that appears on my port 8081.

I used this command:

docker run -d --name server -p 8081:80 nginx

However, I already stopped and removed nginx server with docker and deleted the image, but I still have port 81 busy with the server.

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    I did it and apparently I don't have any process listening on port 8081, by default.

    enter image description here


  2. If you really don’t have any docker container running you might have nginx installed on your system. Use one of the proposed ways here to identify the process running on 8081. You can then decide further moves like killing the processes pid.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search