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.
2
I did it and apparently I don't have any process listening on port 8081, by default.
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.
Click here to cancel reply.
2
Answers
I did it and apparently I don't have any process listening on port 8081, by default.
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.