Check What Service is Listening on What Port
- July 23, 2012
Recently, I had an issue where a service would not start because there was a conflict on the port that it was trying to use. This command made it easy to identify which service was already using the port: netstat -lnptu Here is the explanation of each argument: -l = Show only listening sockets. (These are […]