Jan 9, 2003 #1 rmmagow Technical User Jan 2, 2002 93 US Hi All, Some application on my AIX machine has port 9090 open for listen. How can I find out what app might be using this port. AIX newbie, thanks.
Hi All, Some application on my AIX machine has port 9090 open for listen. How can I find out what app might be using this port. AIX newbie, thanks.
Jan 9, 2003 #2 kwib Technical User Oct 14, 2002 5 AU I don't know off the top of my head what command shows this but you could check in /etc/services to see what the various ports assignments are. Upvote 0 Downvote
I don't know off the top of my head what command shows this but you could check in /etc/services to see what the various ports assignments are.
Jan 9, 2003 #4 ggauthier IS-IT--Management Nov 10, 2002 60 US Along with the netstat example, if you have lsof installed you can run: lsof -i :9090 It will list processes using the port. --gg Upvote 0 Downvote
Along with the netstat example, if you have lsof installed you can run: lsof -i :9090 It will list processes using the port. --gg
Jan 10, 2003 #5 amins Technical User Jan 17, 2002 40 BE try grep 9090 /etc/services Upvote 0 Downvote