azure cli的安装和利用

打印 上一主题 下一主题

主题 1007|帖子 1007|积分 3021

1 概述

azure cli是管理azure云资源的下令行工具。
官网为:
  1. https://learn.microsoft.com/zh-cn/cli/azure/
复制代码

2 安装

2.1 容器安装

  1. docker run -it mcr.microsoft.com/azure-cli
复制代码

3 登录

  1. 9d039d31f8e5:/# az login
  2. To sign in, use a web browser to open the page https://microsoft.com/devicelogin and enter the code NZL8HCV7U to authenticate.
  3. Retrieving tenants and subscriptions for the selection...
  4. [Tenant and subscription selection]
  5. No     Subscription name    Subscription ID                       Tenant
  6. -----  -------------------  ------------------------------------  --------
  7. [1] *  Azure 订阅 2         31948b7e-32d1-420a-968f-cda1531xxxxx  默认目录
  8. The default is marked with an *; the default tenant is '默认目录' and subscription is 'Azure 订阅 2' (31948b7e-32d1-420a-968f-cda1531xxxxx).
  9. Select a subscription and tenant (Type a number or Enter for no changes):
  10. Tenant: 默认目录
  11. Subscription: Azure 订阅 2 (31948b7e-32d1-420a-968f-cda1531xxxxx)
  12. [Announcements]
  13. With the new Azure CLI login experience, you can select the subscription you want to use more easily. Learn more about it and its configuration at https://go.microsoft.com/fwlink/?linkid=2271236
  14. If you encounter any problem, please open an issue at https://aka.ms/azclibug
  15. [Warning] The login output has been updated. Please be aware that it no longer displays the full list of available subscriptions by default.
复制代码
提示用欣赏器打开网址https://microsoft.com/devicelogin,并输入在下令行打印信息中显示的一个指定的码,即可登录。

4 下令

4.1 列出VPC

  1. 9d039d31f8e5:/# az network vnet list -o table
  2. Name     ResourceGroup    Location        NumSubnets    Prefixes     DnsServers    DDOSProtection    VMProtection
  3. -------  ---------------  --------------  ------------  -----------  ------------  ----------------  --------------
  4. ab-vnet  aaa              northcentralus  1             10.0.0.0/16                False
复制代码

4.2 列出负载均衡器

  1. 9d039d31f8e5:/# az network lb list -o table
  2. Location        Name     ProvisioningState    ResourceGroup    ResourceGuid
  3. --------------  -------  -------------------  ---------------  ------------------------------------
  4. northcentralus  demo-lb  Succeeded            aaa              f3752990-b598-4aab-a04b-4979219e989c
复制代码

4.3 列出假造机

  1. 9d039d31f8e5:/# az vm list -o table
  2. Name    ResourceGroup    Location        Zones
  3. ------  ---------------  --------------  -------
  4. ab      AAA              northcentralus
  5. 9d039d31f8e5:/# az vm list
  6. [
  7.   {
  8.     "additionalCapabilities": {
  9.       "hibernationEnabled": false,
  10.       "ultraSsdEnabled": null
  11.     },
  12.     "applicationProfile": null,
  13.     "availabilitySet": null,
  14.     "billingProfile": null,
  15.     "capacityReservation": null,
  16.     "diagnosticsProfile": {
  17.       "bootDiagnostics": {
  18.         "enabled": true,
  19.         "storageUri": null
  20.       }
  21.     },
  22.     "etag": null,
  23.     "evictionPolicy": null,
  24.     "extendedLocation": null,
  25.     "extensionsTimeBudget": null,
  26.     "hardwareProfile": {
  27.       "vmSize": "Standard_D4s_v3",
  28.       "vmSizeProperties": null
  29.     },
  30.     "host": null,
  31.     "hostGroup": null,
  32.     "id": "/subscriptions/31948b7e-32d1-420a-968f-cda1531xxxxx/resourceGroups/AAA/providers/Microsoft.Compute/virtualMachines/ab",
  33.     "identity": {
  34.       "principalId": "f3f7a5a4-20b7-48de-aee8-b8eb67c457d7",
  35.       "tenantId": "f6f134f0-dbf3-46f2-8ef8-ae6e0ad1c9eb",
  36.       "type": "SystemAssigned",
  37.       "userAssignedIdentities": null
  38.     },
  39.     "instanceView": null,
  40.     "licenseType": null,
  41.     "location": "northcentralus",
  42.     "managedBy": null,
  43.     "name": "ab",
  44.     "networkProfile": {
  45.       "networkApiVersion": null,
  46.       "networkInterfaceConfigurations": null,
  47.       "networkInterfaces": [
  48.         {
  49.           "deleteOption": "Detach",
  50.           "id": "/subscriptions/31948b7e-32d1-420a-968f-cda1531xxxxx/resourceGroups/aaa/providers/Microsoft.Network/networkInterfaces/ab724",
  51.           "primary": null,
  52.           "resourceGroup": "aaa"
  53.         }
  54.       ]
  55.     },
  56.     "osProfile": {
  57.       "adminPassword": null,
  58.       "adminUsername": "lj",
  59.       "allowExtensionOperations": true,
  60.       "computerName": "ab",
  61.       "customData": null,
  62.       "linuxConfiguration": {
  63.         "disablePasswordAuthentication": false,
  64.         "enableVmAgentPlatformUpdates": null,
  65.         "patchSettings": {
  66.           "assessmentMode": "ImageDefault",
  67.           "automaticByPlatformSettings": {
  68.             "bypassPlatformSafetyChecksOnUserSchedule": false,
  69.             "rebootSetting": "IfRequired"
  70.           },
  71.           "patchMode": "AutomaticByPlatform"
  72.         },
  73.         "provisionVmAgent": true,
  74.         "ssh": null
  75.       },
  76.       "requireGuestProvisionSignal": true,
  77.       "secrets": [],
  78.       "windowsConfiguration": null
  79.     },
  80.     "plan": null,
  81.     "platformFaultDomain": null,
  82.     "priority": null,
  83.     "provisioningState": "Succeeded",
  84.     "proximityPlacementGroup": null,
  85.     "resourceGroup": "AAA",
  86.     "resources": null,
  87.     "scheduledEventsPolicy": null,
  88.     "scheduledEventsProfile": null,
  89.     "securityProfile": {
  90.       "encryptionAtHost": null,
  91.       "encryptionIdentity": null,
  92.       "proxyAgentSettings": null,
  93.       "securityType": "TrustedLaunch",
  94.       "uefiSettings": {
  95.         "secureBootEnabled": true,
  96.         "vTpmEnabled": true
  97.       }
  98.     },
  99.     "storageProfile": {
  100.       "dataDisks": [],
  101.       "diskControllerType": "SCSI",
  102.       "imageReference": {
  103.         "communityGalleryImageId": null,
  104.         "exactVersion": "20.04.202405130",
  105.         "id": null,
  106.         "offer": "0001-com-ubuntu-server-focal",
  107.         "publisher": "canonical",
  108.         "sharedGalleryImageId": null,
  109.         "sku": "20_04-lts-gen2",
  110.         "version": "latest"
  111.       },
  112.       "osDisk": {
  113.         "caching": "ReadWrite",
  114.         "createOption": "FromImage",
  115.         "deleteOption": "Delete",
  116.         "diffDiskSettings": null,
  117.         "diskSizeGb": 128,
  118.         "encryptionSettings": null,
  119.         "image": null,
  120.         "managedDisk": {
  121.           "diskEncryptionSet": null,
  122.           "id": "/subscriptions/31948b7e-32d1-420a-968f-cda1531xxxxx/resourceGroups/aaa/providers/Microsoft.Compute/disks/ab_OsDisk_1_d073c751c80543e086b3de893bb1fc22",
  123.           "resourceGroup": "aaa",
  124.           "securityProfile": null,
  125.           "storageAccountType": "Standard_LRS"
  126.         },
  127.         "name": "ab_OsDisk_1_d073c751c80543e086b3de893bb1fc22",
  128.         "osType": "Linux",
  129.         "vhd": null,
  130.         "writeAcceleratorEnabled": null
  131.       }
  132.     },
  133.     "tags": null,
  134.     "timeCreated": "2024-06-04T16:51:03.359635+00:00",
  135.     "type": "Microsoft.Compute/virtualMachines",
  136.     "userData": null,
  137.     "virtualMachineScaleSet": null,
  138.     "vmId": "b4c7523a-87a9-4476-96e8-5bd8808xxxxx",
  139.     "zones": null
  140.   }
  141. ]
复制代码

4.4 列出mysql

  1. 9d039d31f8e5:/# az mysql flexible-server list -o table
  2. Name    Resource Group    Location          Version    Storage Size(GiB)    Tier       SKU            State    HA State    Availability zone
  3. ------  ----------------  ----------------  ---------  -------------------  ---------  -------------  -------  ----------  -------------------
  4. abc     aaa               North Central US  8.0.21     20                   Burstable  Standard_B1ms  Ready    NotEnabled
复制代码

5 小结

本文介绍azure cli的容器景象的安装和列表型下令的利用。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

反转基因福娃

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表