Invoke-WebRequest -URi "https://gbl.his.arc.azure.com/log" -Metho

Lucas_Daneil_Lewis 1 Reputation point
2022-08-28T14:13:09.647+00:00

Some Azure Arc Enabled Servers become offline from Connected status. So I run to disconnect these servers with this cmd "azcmagent disconnect" and then I tried to onboard these servers.
But it shows the error like this. Please see the below photo.

Remark: Issue servers are VMs hosted on Esxi. OS: Windows Server 2019 Standard.
235536-1.png

Azure Arc
Azure Arc
A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
399 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Maxim Sergeev 6,571 Reputation points Microsoft Employee
    2022-09-04T02:43:44.223+00:00

    Looks like your default tls is 1.0, can you follow the article?

    https://support.microsoft.com/en-us/topic/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-winhttp-in-windows-c4bd73d2-31d7-761e-0178-11268bb10392

    Or you could try to run Onboardingscript.ps1 after applying

      $TLS12Protocol = [System.Net.SecurityProtocolType] 'Ssl3 , Tls12'  
      [System.Net.ServicePointManager]::SecurityProtocol = $TLS12Protocol  
    

    in the same powershell session
    Please don't hesitate to mark the post as answered if it is. This helps us and our community.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.