Link to home
Start Free TrialLog in
Avatar of acunaara
acunaara

asked on

Why Port not listening on Windows server 2008?

I have a windows 2008 server with symantec antivirus only (not symantec firewall). Also, the Windows firewall is disabled.

Despite of this I tried to telnet the server on port 383 and there is no way. What could be happening.

I found there is Solar Winds software installed, how can i allow the traffic for this port?
Avatar of FarWest
FarWest

Ports only listening when they have applications or services to implement the socket for that port. For example the computer will only listen to port 80 only when application server is running with port 80 assign to it

So make sure that the service that serving this port is running
Avatar of acunaara

ASKER

Yes, I have an application that needs to connect to the server through port 383 and it's running.
However, the server is not listening nothing in port 383 and I am suspecting that it's because of the solarwinds app. How can i know exactly whether Solarwinds is blocking it and how to allow the traffic?
Run this command on the CLI of the server

Netstat -an |findstr 383

This will list the line showing you if the server is listening on that port. You should see something like 0.0.0.0:383

Are you going through a firewall to get to the server? Is the service running on the server?
ASKER CERTIFIED SOLUTION
Avatar of FarWest
FarWest

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
Yes, you were right!!
My application was having an issue while raising the socket to listen this port, so port was unable to server requests.