Link to home
Start Free TrialLog in
Avatar of LWood
LWoodFlag for United States of America

asked on

How can I tell what is listening on port 1000?

I need port 10000 on a Win2k3 server for Backup Exec 9.1 Remote Agent but it is already being used by some application.  (If I change it, I will have to change it on several dozen other servers that have BUE RA installed as well).  NETSTAT -a reveals the following:  

TCP    <ServerName>:10000    <ServerName>.<DomainName>:0    LISTENING
TCP    <ServerName>:10000    <ServerName>.<DomainName>:1038    ESTABLISHED
TCP    <ServerName>:10000    <ServerName>.<DomainName>:kpop    ESTABLISHED

How can I tell what application is using port 10000 so I can change it?  

Louis
ASKER CERTIFIED SOLUTION
Avatar of Nightman
Nightman
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Running MAS90 by any chance?
Avatar of Machin__Shin
Machin__Shin

Avatar of btassure
netstat -ano will list all open and listening connections, their states and the PID that the program is using. You can then open task manager, go to view => select columns => check the pid box and then find the pid that you are looking for in netstat by looking for its port.

If there are loads of open ports (on servers etc) try netstat -ano > c:\netstat.txt and view it in notepad