SSMS 16.5.3 unable to connect to Integration Services 13.0 on another server

Johnny SQL 96 Reputation points
2020-10-07T20:33:20.717+00:00

I recently had to reimage my machine. I've installed SSMS 16.5.3. I cannot connect to Integration Services on another machine that is also running SQL Server 2016 and Integration Services 13.0.

So far I have:

  1. Verified Integration Services 13.0 are running on the server I'm trying to connect to.
  2. Verified host is running SQL Server 2016.
  3. Re-installed SSMS 16.5.3 and SSDT for VS2015
  4. I realize going forward it's preferred to use the SSISDB in Integration Services Catalogs, however these are legacy apps and we have no plans to move them. I need to connect this way.
  5. I can connect to Integration Services from another VM. Just not on my local machine any longer.
  6. UPDATE - I disabled the local firewall and still get the same error.

I used to connect to the server through Integration Services before the re-image. If I remote into another machine and connect, it works fine. What else can I try to connect to Integration Services? Could it be something with the version of Windows from the re-image? Am I forgetting to install something else?

31704-errormessage.png

31705-about.png

31706-version.png

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,933 questions
SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,470 questions
{count} votes

Accepted answer
  1. Johnny SQL 96 Reputation points
    2020-10-20T10:11:06.857+00:00

    Here is the resolution I received from my Microsoft ticket.

    Cause:

    The latest updates on Windows 10 is causing the RPC to NOT ignore the LocalService value. So it is looking locally for the Integrations services rather than contacting the remote machine.

    Resolution:

    Search the System Registry Computer\HKEY_CLASSES_ROOT\ hive [make sure you check under the 32bit system hive ( e.g. Computer\HKEY_CLASSES_ROOT\WOW6432Node)] as well, for this respective search key MsDtsServer130. Changes made to one registry location may update the values under the other in most cases. Usually MsDtsServer130 would be available under 2 locations e.g. (Computer\HKEY_CLASSES_ROOT\AppI & Computer\HKEY_CLASSES_ROOT\WOW6432Node\AppID ).
    Note: MsDtsServer120 for SSIS 2014, MsDtsServer130 for SSIS 2016, MsDtsServer140 for SSIS 2017, MsDtsServer150 for SSIS 2019.

    Spot the LocalService entry in the registry for this identified hive and rename the registry entry from LocalService to LocalService_A.
    No reboot is required. Relaunch SSMS and try connecting. This registry change will prevent SSMS to look for local installation of SSIS and thus initiate a RPC call to remote SSIS.


5 additional answers

Sort by: Most helpful
  1. Johnny SQL 96 Reputation points
    2020-10-09T18:25:56.49+00:00

    Here are my local installed programs. Is anything missing that I should have to connect to the remote SSIS 13.0?

    31361-local-programs.png

    0 comments No comments