我使用此github仓库将虚拟机加入现有的Azure Active Directory域:
https://github.com/Azure/azure-quickstart-templates/tree/master/201-vm-domain-join-existing
我的尝试是使用azure CLI以完全自动化的方式使用它
到目前为止我使用过这个bash命令行:
az组部署创建--resource-group sql-rg --name slq-vm --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vm-domain-join-existing/azuredeploy.json --parameters'{“vmList”:“sql-vm”,“location”:“uksouth”,“domainJoinUserName” :“[email protected]”,“domainJoinUserPassword”:“*****”,“domainFQDN”:“myfqdn”}'
执行此命令后,我收到此错误:
Azure错误:InvalidRequestContent消息:请求内容无效且无法反序列化:'将值“sql-vm”转换为“Microsoft.WindowsAzure.ResourceStack.Frontdoor.Data.Definitions.DeploymentParameterDefinition”时出错。路径'properties.parameters.vmList',第1行,位置196.'。
设置参数的正确方法是什么?
只是为了节省他人的时间:
--parameters '{ "vmList": {"value":"sql-vm"}, "domainJoinUserName": {"value":"[email protected]"}, "domainJoinUserPassword":{"value":"*****"}, "domainFQDN":{"value":"myfqdn"} }'
应以正确的方式指定参数。