Virtual-Machines

無法登錄到使用資源管理器創建的全新 Azure 虛擬機

  • February 24, 2016

我剛剛使用資源管理器模型在 Azure 中創建了一個 VM。設置好之後,我用這個按鈕下載了一個 RDP 客戶端:

在此處輸入圖像描述

但是無論我怎麼嘗試,我都無法登錄。機器正在執行。我收到的錯誤是:

Your credentials did not work

我嘗試了以下使用者名:

myCompanyDomain\user
user
.\user
\user
NameOfVM\user

我已經檢查、仔細檢查並三次檢查了密碼。我已閱讀並遵循本文中的所有步驟:https ://azure.microsoft.com/en-us/documentation/articles/virtual-machines-troubleshoot-remote-desktop-connections/#wincred

仍然無法連接。我錯過了什麼?

好吧,這個問題的根源仍然是個謎。如果我們弄清楚了,我會發布解決方案。無論出於什麼奇怪的原因,當我創建一個 VM 時,沒有人(我的同事和我都沒有)可以訪問它。當其他人使用相同的步驟創建 VM 時,我們都可以訪問它。但是,我們找到了解決方法。 這篇文章有所幫助,但並沒有讓我們一路走好。

這是圍繞腳本的工作:

Login-AzureRmAccount

Get-AzureRmSubscription -SubscriptionName <Your Subscription Name>

複製上面返回的租戶 ID

Login-AzureRmAccount -TenantId <TenantId>

$vm = Get-AzureRmVM -ResourceGroupName <Your Resource Group Name> -Name <Your VM Name>

$cred = Get-Credential (this is the VM user credentials)

Set-AzureRmVMAccessExtension -ResourceGroupName <Your Resource Group Name> -VMName <Your VM Name> -Name VMAccessAgent -TypeHandlerVersion "2.0" -UserName $cred.UserName -Password $cred.GetNetworkCredential().Password -Location <Location of VM>

Update-AzureRmVM -ResourceGroupName <Your Resource Group Name>  -VM $vm

要對 VM 使用者使用 RDP,請使用local\username.\username. 兩種形式都有效;我剛剛用我自己的虛擬機驗證了這一點。

如果這不能讓你進入,你還有其他一些與網路無關的問題(你得到的錯誤意味著你到達了虛擬機)。

引用自:https://serverfault.com/questions/759235