{}

브랜드

Impact-Company-Logo-English Black-01-177x54

슈나이더 일렉트릭 코리아 웹사이트에 방문해 주셔서 감사합니다.

슈나이더 일렉트릭 코리아 웹사이트 방문자 분들 모두 환영합니다.
FAQ 검색
SQL Script to Find the SQL Server Listening Port
Issue
When troubleshooting application and database connectivity issues, verifying the port on which the SQL instance is listening
for connections is a basic and important troubleshooting step.  This is also important information to obtain, to verify this port is open and
not being blocked by any firewall rules.

Product
Struxureware Power Monitoring
Power Monitoring Expert
ION Enterprise
ION EEM

Environment
SQL Server 2005, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, SQL Server 2016

Cause
Although the default port is 1433, the SQL instance can be configured to listen on any other desired port.

Resolution
*Warning: Irreparable database damage can occur. This procedure should only be performed by users familiar with SQL Server Management Studio. Databases should be backed up prior to performing this procedure.*

1) Open SQL server Management Studio and connect to the desired instance

2) Start a new query

3) copy the script below and execute

DECLARE @key VARCHAR(50), @RegistryPath VARCHAR(200)
IF (SERVERPROPERTY('INSTANCENAME')) IS NULL
BEGIN
SET @RegistryPath='Software\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp'
END
ELSE
BEGIN
SET @RegistryPath='Software\Microsoft\Microsoft SQL Server\'+CONVERT(VARCHAR(25),SERVERPROPERTY('INSTANCENAME')) + '\MSSQLServerSuperSocketNetLib\Tcp'
END
EXEC master.dbo.xp_regread 'HKEY_LOCAL_MACHINE', @RegistryPath, 'tcpPort'


** see attachment containing the SQL script text

슈나이더 일렉트릭 Korea

첨부 파일
PortScript.sql [441 Bytes]
자세히 알아보기
제품군
유용한 문서
자세히 알아보기
제품군