使用CLI将Azure VM从一个OMS工作空间移动到另一个OMS工作空间

时间:2017-08-15 21:57:46

标签: azure azure-cloud-services azure-cli

是否有命令将Azure VM从一个OMS(Log Analytics)工作空间移动到另一个OMS工作空间?

我阅读了AzureRmResource的文档,但不确定这是否是正确的选项?

2 个答案:

答案 0 :(得分:0)

使用命令' az vm extension set'。

此示例bash脚本。

#!/bin/sh

vmname=<Replace with your vm name>
rgname=<Replace with your Resource Group name>
omsid=<Replace with your OMS Id>
omskey=<Replace with your OMS key>

az vm extension set \
  --resource-group $rgname \
  --vm-name $vmname \
  --name OmsAgentForLinux \
  --publisher Microsoft.EnterpriseCloud.Monitoring \
  --version 1.0 --protected-settings '{"workspaceKey": "'"$omskey"'"}' \
  --settings '{"workspaceId": "'"$omsid"'"}'

答案 1 :(得分:0)

根据您的方案,您需要在VM上删除代理并使用新的OMS配置安装OMS代理。这是您可以使用的脚本。我在实验室测试,它对我有用。

#!/bin/sh

# resource group name, vm nmae, OMS Id and OMS key.
rg=<resource group name>
vmname=<>
omsid="<>"
omskey=""

##Remvoe OMS agent from VM
az vm extension delete -g $rg --vm-name $vmname -n OmsAgentForLinux

# re-install and configure the OMS agent with your new OMS.
az vm extension set \
  --resource-group $rg \
  --vm-name $vmname \
  --name OmsAgentForLinux \
  --publisher Microsoft.EnterpriseCloud.Monitoring \
  --version 1.0 --protected-settings '{"workspaceKey": "'"$omskey"'"}' \
  --settings '{"workspaceId": "'"$omsid"'"}'