问题描述
尝试将适用于Linux的Azure App Service部署到现有资源组时遇到以下错误:
{
代码":"BadRequest",
消息":请求的功能在资源组myNewResourceGroup中不可用.请尝试使用其他资源组或创建一个新的资源组. "Target":null,
详细信息":[
{
消息":请求的功能在资源组myNewResourceGroup中不可用.请尝试使用其他资源组或创建一个新的资源组."
},
{
代码":"BadRequest"
},
{
" ErrorEntity" ;: {
"ExtendedCode":"59324",
"MessageTemplate":请求的功能在资源组{0}中不可用.请尝试使用其他资源组或创建一个新的资源组. 参数":[
" myNewResourceGroup"
],
代码":"BadRequest",
消息":请求的功能在资源组myNewResourceGroup中不可用.请尝试使用其他资源组或创建一个新的资源组."
}
}
],
" Innererror" ;: null
}
但是,如果我部署到新的资源组,则可以正常工作.
Hi,
I am getting following error while trying to deploy the Azure App Service for Linux to an existing resource group:
{
"Code": "BadRequest",
"Message": "Requested feature is not available in resource group myNewResourceGroup. Please try using a different resource group or create a new one.",
"Target": null,
"Details": [
{
"Message": "Requested feature is not available in resource group myNewResourceGroup. Please try using a different resource group or create a new one."
},
{
"Code": "BadRequest"
},
{
"ErrorEntity": {
"ExtendedCode": "59324",
"MessageTemplate": "Requested feature is not available in resource group {0}. Please try using a different resource group or create a new one.",
"Parameters": [
"myNewResourceGroup"
],
"Code": "BadRequest",
"Message": "Requested feature is not available in resource group myNewResourceGroup. Please try using a different resource group or create a new one."
}
}
],
"Innererror": null
}
However, if I deploy to a new resource group it works fine.
这篇关于在Linux上部署Azure App Service时出错:资源组中不提供请求的功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!