May 15, 2007 at 10:55 am
I setup sql connection on port 1433 between location A and B.
Can anyone tell me how to determine the connection already establish?
So far I use netstat -an to validate.
On Server A, I type in netstat -an and it displayed server B public ip:
12.124.234.67:1433 ESTABLISHED.
On Server B, I type in netstat -an and it displyed server A public ip:
55.345.123.88: 1433 ESTABLISHED
Thank you.
Edwin
May 15, 2007 at 11:16 pm
SQL Server Configuration Manager -> SQL Server 2005 Services -> on sql server service, right click, then 2nd tab;
hope this is what you're looking for
May 16, 2007 at 7:21 am
Hi,
Apart from you can also get the information in the SQL Server error log: You can check this line in the error log.
2007-04-15 17:35:28.92 Server Server is listening on [ 'any' <ipv4> 1433].
Hope this help..
Minaz
"More Green More Oxygen !! Plant a tree today"
May 16, 2007 at 11:00 am
Another approach, hand for debuggin conectivity issues is
telnet ip
May 16, 2007 at 12:07 pm
Thank you all for responsea.
I created alias in SQL Server 2005 and 2000.
I did not see the IP address SQL Server 2005 show up in
Server B (SQL Server 200) when I typed "netstat -an".
Questions:
Shouldn't I see the sql server 2005 ip address in Server B.?
I cannot ping since the network guy disabled it. The only weapon for me
as junior DBA is to verify the connection utilize netstat-an.
There is no telnet server setup.
Can any one give me advise?
Thank you for your help.
TJ
May 17, 2007 at 7:13 am
You don't have to have a "telnet server set up". You just use the command prompt: telnet 1433/1434. You can also type SQLCMD /L to see which instances are listening on the ports.
May 17, 2007 at 10:38 am
Thanks a lot!!!
I tried telnet 1433/1434.
Connecting to 1433/1434..Could not open connection to the host, on port XX: Connection failed.
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply