SQLServer port change

  • Hello,

    i have tried and tested port number changes with luck now luckily going to production linked server is not working to a server where it is default port of 1433.

    how to achieve succesful port change with linked server connections.

    thanks in advance.

    Regards
    Durai Nagarajan

  • well there is two pieces of the puzzle.

    IF the linked server is using dynamic ports, you need to have the SQl Browser Service running on the linked server. If it's not

    running, or you know you've already configured that other instance to listen on a specific port, you just make sure to specify the port when creating the linked server:

    EXEC master.dbo.sp_addlinkedserver

    @server = N'My2012LinkedServer',

    @provider=N'SQLNCLI',

    @srvproduct = N'',

    @datasrc=N'DEV223\SQL2012,14330'

    --Or

    EXEC master.dbo.sp_addlinkedserver

    @server = N'My2012LinkedServer',

    @provider=N'SQLNCLI',

    @srvproduct = N'',

    @datasrc='192.168.0.55,14330'

    you can use the SQL Configuration manager to change from dynamic to static ports:

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • thanks hope this will work from the server where i have changed the port number

    i'll try and getback, thanks again.

    Regards
    Durai Nagarajan

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply