Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 POrt#

Author  Topic 

swekik
Posting Yak Master

126 Posts

Posted - 2009-02-24 : 16:22:14
How to check the sql server is listening on particular port # from command prompt ?

Which parameter do i need to use with "netstat" ?

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-02-24 : 16:55:11
Use netstat -a -b. Look for the SQL Server process (sqlservr.exe). If you have multiple instances installed, then you'll see multiple processes.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

swekik
Posting Yak Master

126 Posts

Posted - 2009-02-24 : 17:41:22
how to ping a server using the portnumber ?

Ex- ping xxx.xxx.xxx.xxx:port#

IS it correct?
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2009-02-24 : 17:59:42
You can't ping a port. You can attempt to telnet to it to see if it's open.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -