Powershell Azure: не удалось создать безопасный канал SSL / TLS - PullRequest
0 голосов
/ 21 марта 2019

Я пытаюсь подключиться к Azure из Powershell и получаю следующие ошибки.

PS C:\WINDOWS\system32> Login-AzureRmAccount
Login-AzureRmAccount : Service returned error. Check InnerException for more details: The request was aborted: Could
not create SSL/TLS secure channel.
At line:1 char:1
+ Login-AzureRmAccount
+ ~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [Connect-AzureRmAccount], AadAuthenticationFailedException
    + FullyQualifiedErrorId : Microsoft.Azure.Commands.Profile.ConnectAzureRmAccountCommand



Add-AzureAccount : Service returned error. Check InnerException for more details: The request was aborted: Could not
create SSL/TLS secure channel.
At line:1 char:1
+ Add-AzureAccount
+ ~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [Add-AzureAccount], AadAuthenticationFailedException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Profile.AddAzureAccount

Это не помогло

Версия Powershell:

PS C:\WINDOWS\system32> $PSVersionTable

Name                           Value
----                           -----
PSVersion                      5.1.17134.590
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.17134.590
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1

И версия для Windows: Окно 10.

1 Ответ

1 голос
/ 25 марта 2019

Вы можете запустить [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" в своем PowerShell, затем Login-AzureRmAccount.

...