Azure Web 应用程序 + 数据库部署错误

问题描述 投票:0回答:1

我正在尝试遵循 Microsoft 的教程(教程:将 PHP、MySQL 和 Redis 应用程序部署到 Azure 应用服务),每当我尝试在 Azure 中创建和部署 Web 应用程序时,我总是会遇到相同的错误。

{
"status": "Failed",
"error": {
    "code": "Forbidden",
    "message": "The subscription '8f036b21-0671-48cb-b0e5-173b76e7e***' is not allowed to create or update the serverfarm.",
    "details": [
        {
            "message": "The subscription '8f036b21-0671-48cb-b0e5-173b76e7e***' is not allowed to create or update the serverfarm."
        },
        {
            "code": "Forbidden"
        },
        {}
    ]
}

}

我错过了什么吗?这是我的私人帐户,我是订阅的所有者,但它仍然说此订阅没有任何权限。是否有我必须更改的设置或者我可能已经搞砸了? 如果您需要更多信息,请告诉我。

azure azure-web-app-service azure-webapps
1个回答
0
投票

我已遵循 MSDoc 教程:使用 MySQL 和 Redis 的 PHP 应用程序,并且能够毫无问题地将 Web 应用程序部署到 Azure 应用服务。

  • 是的,根据 MS 问答,问题在于注册服务器场,有时该问题可能是暂时引起的。

  • 尝试再次重新部署应用程序。

  • 此外,交叉检查您的订阅权限。

  • 我有贡献者角色

enter image description here

Git Hub 部署:

enter image description here

部署日志: enter image description here

环境变量: enter image description here

  • 如果您仍然遇到问题,请尝试在其他区域创建应用服务。

另请参阅解决相同问题的SOThread

© www.soinside.com 2019 - 2024. All rights reserved.