如何使用 azure-cli 创建 Azure 站点指定资源组
How to create Azure site specify resource group using azure-cli
有了这个参考,https://docs.microsoft.com/en-us/bot-framework/deploy-bot-local-git
我执行了如下命令
$ azure site create --git my-app-name
然后,出现一条错误消息。
info: Executing command site create
error: The server failed to authenticate the request. Verify that the certificate is valid and is associated with this subscription.
error: Error information has been recorded to C:\Users\yokoyamt\.azure\azure.err
error: site create command failed
我在另一个 Azure 帐户中尝试过,我有 "power-user",然后
创建了一个新的资源组,并在其中部署了应用服务。
但是这一次,我没有足够的角色来创建新的资源组。
所以我猜如果我在通过 azure-cli 创建应用程序时指定了资源组。
谁能解释一下这个?
> az account list --output table
Name CloudName SubscriptionId State IsDefault
-------- ----------- ------------------------------------ ------- -----------
従量課金 AzureCloud my-subscription-id Enabled True
azure site
是经典(asm)模式资源,azure web
是arm模式资源。您应该在经典门户中授予您的帐户共同管理员权限。新门户不适用于它。请参考这个question.
根据您的描述,您希望在 Azure 上部署一个 Web 应用程序。您可以使用 Azure CLI 2.0 来执行此操作。请参考这个link.
有了这个参考,https://docs.microsoft.com/en-us/bot-framework/deploy-bot-local-git
我执行了如下命令
$ azure site create --git my-app-name
然后,出现一条错误消息。
info: Executing command site create
error: The server failed to authenticate the request. Verify that the certificate is valid and is associated with this subscription.
error: Error information has been recorded to C:\Users\yokoyamt\.azure\azure.err
error: site create command failed
我在另一个 Azure 帐户中尝试过,我有 "power-user",然后 创建了一个新的资源组,并在其中部署了应用服务。
但是这一次,我没有足够的角色来创建新的资源组。 所以我猜如果我在通过 azure-cli 创建应用程序时指定了资源组。
谁能解释一下这个?
> az account list --output table
Name CloudName SubscriptionId State IsDefault
-------- ----------- ------------------------------------ ------- -----------
従量課金 AzureCloud my-subscription-id Enabled True
azure site
是经典(asm)模式资源,azure web
是arm模式资源。您应该在经典门户中授予您的帐户共同管理员权限。新门户不适用于它。请参考这个question.
根据您的描述,您希望在 Azure 上部署一个 Web 应用程序。您可以使用 Azure CLI 2.0 来执行此操作。请参考这个link.