gpt4 book ai didi

azure - 无法连接到使用 Azure Powershell 创建的 Azure 虚拟机

转载 作者:行者123 更新时间:2023-12-03 04:34:46 25 4
gpt4 key购买 nike

我通过 https://portal.azure.com/ 成功创建了 Azure 虚拟机用户界面。我开始使用 Azure Powershell 脚本来自动创建类似的 VM,最终得到了以下功能:

function Create-CentOSVirtualMachine
{
Set-AzureSubscription -SubscriptionName Pay-As-You-Go -CurrentStorageAccount "thefoobar"

Write-Output "Searching for the latest CentOS image..."

$image = (Get-AzureVMImage | Where-Object { $_.Label -like "*CentOS*" } | select -last 1)

$imageName = $image.ImageName
$imageLabel = $image.Label
$dataDiskSizeInGB = 30
$diskLabel = "thefoobar-data"
$mediaOsLocation = "https://thefoobar.blob.core.windows.net/vhds/thefoobar-os.vhd"
$mediaDataLocation = "https://thefoobar.blob.core.windows.net/vhds/thefoobar-data.vhd"

Write-Output "Creating CentOS virtual machine from:" $imageLabel

$user = "thefoobardev"
$password = "thefoobarpassword"

$vmConfig = New-AzureVMConfig -Name "thefoobar" -MediaLocation $mediaOsLocation -InstanceSize Basic_A1 -ImageName $imageName

$vm = $vmConfig | Add-AzureProvisioningConfig -Linux -LinuxUser $user -Password $password | Add-AzureDataDisk -CreateNew -DiskSizeInGB $dataDiskSizeInGB -DiskLabel $diskLabel -LUN 0 -MediaLocation $mediaDataLocation

$vm | Add-AzureEndpoint -Name 'ElasticSearchHTTP' -LocalPort 9200 -PublicPort 9200 -Protocol tcp
$vm | Add-AzureEndpoint -Name 'ElasticSearchTransport' -LocalPort 9300 -PublicPort 9300 -Protocol tcp
$vm | Set-AzureEndpoint -Name 'SSH' -LocalPort 22 -PublicPort 22 -Protocol tcp

New-AzureVM -ServiceName "thefoobar" -VNetName "MyFoobarNetwork" -VMs $vm -Location "East US"
}

对我来说,它似乎与我通过用户界面所做的事情相匹配(尽管我针对这个公共(public)问题将脚本中的一些字符串重命名为“foobar”)。该脚本运行时没有任何错误,并且仪表板似乎完全按照我的预期显示了我的虚拟机。

但是,创建脚本后,我无法通过 PuTTY 连接:

enter image description here

这通常是我通过 GUI 创建虚拟机后连接所需填写的全部内容。使用我的脚本可以连接,但在输入用户后显示错误:

enter image description here

这是我通过门户 UI 输入安全详细信息的方法:

enter image description here

从门户创建时,我在 PuTTY 时会被要求输入用户密码。我的 Powershell 脚本中是否缺少任何可以帮助我在从门户创建虚拟机时能够进行连接的内容?

<小时/>

我尝试使用https://msdn.microsoft.com/en-us/library/azure/dn495299.aspx中显示的一些额外的Linux参数。 .

如果我添加 -NoSSHEndpoint-DisableSSH,只需类似地创建我的虚拟机,但少一个 SSH 端点。如果我手动添加端点,我仍然收到相同的错误消息。如果我添加 -NoSSHPassword,我会收到错误 New-AzureVM : BadRequest: The UserPassword property must bespecified.

最佳答案

我现有代码片段中的以下行返回 RightImage 名为 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2 的图像。

$image = (Get-AzureVMImage |Where-Object { $_.Label -like "*CentOS*"} | select -last 1)

我尝试了 OpenLogic 的不同 CentOS 镜像,并且我现有的 PowerShell 脚本有效:

获取 AzureVMImage | Where-Object { $_.ImageName -like "*OpenLogic-CentOS*"} |选择-最后1

它给了我图像5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128

不确定是什么特别阻止了 RightImage 图像允许远程连接。

关于azure - 无法连接到使用 Azure Powershell 创建的 Azure 虚拟机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28202416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com