SQL SERVER – Slow Installation Wizard on Cluster – Please Wait While Microsoft SQL Server 2016 Setup Process the Current Operation

Have you come across a situation where setup is taking many hours while navigating from one screen to another in clustered environment?  Have you ever waited for many hours watching following message related to slow installation wizard on the cluster?

Please wait while Microsoft SQL Server 2016 Setup process the current operation

SQL SERVER - Slow Installation Wizard on Cluster - Please Wait While Microsoft SQL Server 2016 Setup Process the Current Operation setup-pls-wait-01-800x193

When I looked into Detail.txt, I found something like below

(01) 2017-04-08 16:14:46 Slp: Running Action: RunRemoteDiscoveryAction
(01) 2017-04-08 16:14:46 Slp: Running discovery on local machine
(01) 2017-04-08 16:14:47 Slp: Discovery on local machine is complete
(01) 2017-04-08 16:14:47 Slp: Running discovery on remote machine: CRM-SQLNODE1
(01) 2017-04-08 21:13:35 Slp: Discovery on CRM-SQLNODE1 is complete
(01) 2017-04-08 21:13:35 Slp: Completed Action: RunRemoteDiscoveryAction, returned True

Notice the time in each row. There is a HUGE gap of time between two lines and that’s the time SQL setup is doing a remote discovery to find out what is there on a other node of the cluster.

When I asked, they informed that they have done hardening of the server as per the company standards. While checking their hardening document, we found that Admin shares were disabled.

WORKAROUND/SOLUTION

The remote discovery issue was resolved by setting the following registry key to 1.

HKLM\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters\AutoShareServer

Reference https://technet.microsoft.com/en-us/library/aa997392(v=exchg.80).aspx

  • Open a registry editor, start > Run > Regedit.exe.
  • Navigate to: HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters
  • In the right pane, locate and double-click AutoShareServer.
  • Change the value from 0 to 1.
  • Close the registry editor, and restart the Server service for the change to take effect.

Have you seen this issue earlier? Do you know any other such issues due to hardening?

Reference: Pinal Dave (http://blog.SQLAuthority.com)

SQL Error Messages, SQL Server, SQL Server Cluster, SQL Setup
Previous Post
SQL SERVER – Script Upgrade Failure – RsFxFt.Dll::RsFxMgmtInitialize failed: Error 0x80070002
Next Post
SQL SERVER – Logon Failure: The User has not Been Granted the Requested Logon Type at This Computer

Related Posts

13 Comments. Leave new

  • Is there anything else to consider with this stall? feel like I’ve tried everything and still get a 6-7 hour Stall on discovery on remote machine.

    Reply
  • Got the answer through my head. The HKLMSYSTEMCurrentControlSetServiceslanmanserverparametersAutoShareServer setting adds a ADMIN$ share, so I could validate. It goes away quicky so the network admin must have a policy t lock it out.
    Thanks Pinal!

    Reply
  • Just so that I understand correctly: the company have a set of standards with the objective of meeting certain security requirements (quite possibly legal requirements) and the result of this is that a SQL setup takes 5 hours. The recommended solution? Simply run roughshod over these standard (maybe because IT security is an inconvenience to SQL DBAs, right, whose time is more valuable than the security of the company?) and re-enable the thing that the security guys have disabled. I think that perhaps your “solution” should come with a warning: do this and you’re likely to get yourself fired! (I would!)

    Reply
  • Azhar Iqbal 20-50 most are SQL 2008 R2 and older
    January 2, 2018 9:05 pm

    My setup does not stop on Discovery But I see the below Error.

    (09) 2018-01-02 12:34:18 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: SQL Server Setup was not able to scan for product updates within 5 minutes. This can happen when there are Internet or network issues. —> Microsoft.SqlServer.Configuration.SmartSetupExtension.MuSelectServerTimeoutException: SQL Server Setup was not able to scan for product updates within 5 minutes. This can happen when there are Internet or network issues.

    Any Help. I am using SQL Server 2017.

    Reply
  • Thanks Pinal Dave, that worked perfectly for me … appreciate you putting up the solution to this obscure issue

    Reply
  • Walter Rodrigues
    December 9, 2020 3:42 pm

    AutoShareServer key does not exist in m registry.

    Reply
  • Thaer Meziane
    March 3, 2024 2:24 am

    It didn’t work for me :
    (06) 2024-03-02 21:32:22 Slp: Error: Action “Microsoft.SqlServer.Configuration.SmartSetupExtension.SearchUpdatesAction” threw an exception during execution.
    (06) 2024-03-02 21:32:22 Slp: Microsoft.SqlServer.Setup.Chainer.Workflow.ActionExecutionException: SQL Server Setup was not able to scan for product updates within 5 minutes. This can happen when there are Internet or network issues. —>

    Reply

Leave a Reply