Azure CLI 简易开机和更换IP教程 – 基础篇

前言

Azure CLI 是一组用来创建和管理 Azure 资源的命令。 Azure CLI 可用于各种 Azure 服务,可用来快速使用 Azure(侧重于自动化)。

安装 Azure CLI

官网:https://docs.microsoft.com/zh-cn/cli/azure/install-azure-cli

从官网下载并安装 Azure CLI,Windows用户可 点此 ,直接下载最新版

创建虚拟机

使用设备码授权登陆

az login --use-device-code

创建资源组

az group create --location
                --name
                [--managed-by]
                [--subscription]
                [--tags]

示例:在东亚区域创建新的资源组

az group create -l eastasia -n MyResourceGroup

eastasia 是 az account list-locations 中的值。 可以使用 az configure --defaults location=<location> 配置默认位置。

简单创建vm虚拟机,Ubuntu的

az vm create -n 实例名称 -g 资源组名称 \
    --public-ip-address-dns-name 自定义dns \
    --image ubuntults --data-disk-sizes-gb 64 \
    --size Standard_B1s --admin-username 用户名(不可root等保留字符,否则变为azureuser) --admin-password 密码(12-72个字符,包含字母数字和特殊符号)

 示例:

az vm create -n MyVM -g MyResourceGroup --public-ip-address-dns-name MyUniqueDnsName --image ubuntults --data-disk-sizes-gb 64 --size Standard_B1s --admin-username MyAzVM--admin-password 6LQs8PHGv2%hTROrI@kqr895p4qr

 开放端口,例如:--port 1-65535

az vm open-port -g 资源组名 -n 实例名 --port 端口或端口范围 

 列出IP地址:

az vm list-ip-addresses -n MyVM -o table

更换IP

直接上命令,然后再查询一下IP地址就知道换过之后的IP了:

az vm deallocate -g MyResourceGroup -n MyVM && az vm start -g MyResourceGroup -n MyVM

 

声 明 1 bujj博客:www.bujj.org
2 原创文章,转载请注明转自bujj博客:www.bujj.org
3 当前页网址:https://www.bujj.org/index.php/2022/01/07/275/
THE END
分享
二维码
< <上一篇
下一篇>>