Amazon-Ec2

如何確定 EC2 Windows Server Core 實例的預設密碼?

  • May 24, 2020

Amazon 最近推出了 Windows Server 2008 R2 Core 作為 EC2 中的可用映像。我對此感到很興奮,但沒有關於如何開始的文件。

例如,如何檢索這些實例之一的預設密碼?

我自己並沒有真正使用過 Windows 實例,但是我找到了這個連結:- http://techgurulive.com/2011/03/07/how-to-get-windows-password-amazon-ec2-instance/

  • 右鍵點擊實例,然後點擊獲取 Windows 密碼。將出現檢索預設 Windows 管理員密碼對話框。
  • 將您的私鑰粘貼到提供的欄位中,然後點擊解密密碼。Amazon EC2 返回 Windows 管理員密碼的加密版本。您的私鑰用於在本地解密密碼。您的私鑰永遠不會通過網路傳輸。

雖然無法驗證這一點。

亞馬遜文件本身有這個:http ://docs.amazonwebservices.com/AWSEC2/latest/CommandLineReference/index.html?ApiReference-cmd-GetPassword.html

這意味著您可以使用它

ec2-get-password i-2574e22a -k windows-keypair.pem

使用開發者 API 工具。

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