Author
port numbers and IP Address
Gangireddy Danam
Greenhorn
Joined: Aug 08, 2012
Posts: 29
How to find particular port number is utilizing or not ..?
I had changed Oracle 10gXE port number from 8080 to 2020.
How to find oracle related services are running with this port number ?
..ThankYou
Rajdeep Biswas
Ranch Hand
Joined: Mar 26, 2012
Posts: 163
In Unix,
netstat | grep <port_no>
e.g.
netstat -a lists all the ports
For more options, type
man netstat
In Windows,
netstat gives all the ports in use.
To find a specific port, say 2020, use
netstat | find "2020"
The biggest gamble will be to ask a question whose answer you know in that it will challenge your theory | www.TechAspire.blogspot.in
Peter Johnson
author
Bartender
Joined: May 14, 2008
Posts: 5536
posted Dec 31, 2012 20:38:30
0
On Windows, you might also look into tcpview from sysinternals .
JBoss In Action
subject: port numbers and IP Address