Finding the process that locked a port in AIX ******************************************************************** Run the following command to check if port is in use
# netstat -an | grep <port number>
If above returns the connection, then run the following command to get the address of the port number
# netstat -Aan | grep <port number>
Once you […]
Recent Comments