gpt4 book ai didi

azure - 如何在本地传递cloud-init文件?

转载 作者:行者123 更新时间:2023-12-02 07:08:38 25 4
gpt4 key购买 nike

我一直在 Windows bash 上工作并尝试传递云初始化文件,不幸的是我无法通过网络访问该应用程序,以下是引用..

"https://learn.microsoft.com/en-us/azure/virtual-machines/linux/tutorial-automate-vm-deployment "

最佳答案

您可以使用“Linux text editors”中的任何编辑器” 在本地创建 cloud-init.txt 文件。

我使用 Nano 编辑器创建 cloud-init.txt 文件,如下所示:

nano cloud-init.txt

复制并粘贴提到的文档中提到的内容。

Ctrl+X 保存并按Y

enter image description here

现在使用az login登录,如果你还没有安装azure cli 2.0可以引用“Install Azure CLI 2.0 with apt” ”。

az登录

enter image description here

现在使用 –custom-data 创建一个虚拟机,如下所示:

az vm create --resource-group myResourceGroupAutomate --name myVM --image UbuntuLTS --admin-username azureuser --generate-ssh-keys  --custom-data /root/cloud-init.txt

enter image description here

要允许 Web 流量到达您的 VM,请使用 az vm open-port 从 Internet 打开端口 80:

az vm open-port --port 80 --resource-group myResourceGroupAutomate --name MyVM

测试网络应用:

enter image description here

关于azure - 如何在本地传递cloud-init文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50495488/

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