2

我正在努力使用带有 GalleryTemplate Json 文件的 powershell 创建 Drupal Webapp。它创建 Serverfarm、数据库服务器,但无法创建网站。我无法弄清楚如何继续前进,因为网站创建需要使用创建的托管计划 serverfarm。在下面获得专业帮助会很有帮助。提前致谢。

GalleryTemplateIdentity :: Acquiacom.AcquiaDrupal7SQL.0.3.16-preview

PS C:\scripts> New-AzureResourceGroup -Name azurepowershellush -TemplateFile F:\DeployerScript\Acquiacom.AcquiaDrupal7SQL.0.3.16-preview.json -StorageAccountName pilot -Location "East US"

提示用户输入

WARNING: The Switch-AzureMode cmdlet is deprecated and will be removed in a future release.
cmdlet New-AzureResourceGroup at command pipeline position 1
Supply values for the following parameters:
(Type !? for Help.)
siteName: azureappush
hostingPlanName: DefaultServerFarm
serverFarmResourceGroup: DefaultServerFarm
siteLocation: East US
serverName: azureappush
serverLocation: East US
administratorLogin: adminXprt_1
databaseName: adminXprt_1
webDeploy_DatabaseUsername: adminXprt_1
webDeploy_DatabasePassword: Sample_1987

输出

New-AzureResourceGroup : 10:11:41 AM - Resource Microsoft.Web/Sites 'azureappush' failed with message 'Cannot find ServerFarm with 
name DefaultServerFarm.'

ResourceGroupName : azurepowershellush
Location          : eastus
Resources         : {azureappush, adminXprt_1, azurepowerush, azurepowerush1...}
ResourcesTable    : 
                    Name               Type                             Location
                    =================  ===============================  ========
                    azureappush        Microsoft.Sql/servers            eastus  
                    adminXprt_1        Microsoft.Sql/servers/databases  eastus  
                    azurepowerush      Microsoft.Sql/servers            eastus  
                    azurepowerush1     Microsoft.Sql/servers            eastus  
                    adminxprt_1        Microsoft.Sql/servers/databases  eastus  
                    adminxprt_1        Microsoft.Sql/servers/databases  eastus  
                    Default1           Microsoft.Web/serverFarms        eastus  
                    DefaultServerFarm  Microsoft.Web/serverFarms        eastus  

ProvisioningState : Succeeded
Permissions       : {Microsoft.Azure.Commands.Resources.Models.Authorization.PSPermission}

感谢和问候,

哈里什

4

1 回答 1

3

看起来 Web 应用程序无法找到服务器场(AKA 应用程序服务计划),因为它位于不同的资源组中。要解决此问题,请尝试在同一资源组中创建 ServerFarm 和 Web 应用程序。

即使用这个命令:

PS C:\scripts> New-AzureResourceGroup -Name "azurepowershellush" -TemplateFile F:\DeployerScript\Acquiacom.AcquiaDrupal7SQL.0.3.16-preview.json -StorageAccountName pilot -Location "East US" -siteName "azureappush"
-hostingPlanName "DefaultServerFarm" -serverFarmResourceGroup "azurepowershellush" -siteLocation "East US" -serverName "azureappush" -serverLocation "East US" -administratorLogin "adminXprt_1" -databaseName "adminXprt_1" -webDeploy_DatabaseUsername "adminXprt_1" -webDeploy_DatabasePassword "Sample_1987"

请注意,-Name 和 -serverFarmResourceGroup 都是“azurepowershellush”。

于 2015-06-22T17:47:47.303 回答