2015-02-11 97 views
0

我目前正在與Windows Azure一起工作,以便按照步驟here設置並運行羣集。但是,當我試圖執行command我得到這個錯誤:嘗試通過Azure Powershell創建羣集時PreClusterCreationValidation失敗

New-AzureHDInsightCluster : Unable to complete the cluster create operation left behind state: 'Error'. Message: 'PreClusterCreationValidationFailure'.

我看看到this,但我與它有點困惑。輸入值是什麼意思?是ClusterSizeInNodes?也可能由於相同的集羣名稱已存在而發生此錯誤?

任何幫助,將不勝感激。

回答

1

如果您提供的參數與彼此不兼容,例如請求一個數據中心區域中的羣集並指向另一個區域中的默認存儲容器,則有時您會看到PreClusterCreationValidationFailure消息。

如果情況並非如此,請包括您提供的具體參數的更多細節。

+0

謝謝,我修復。這是由於'容器名稱',我把它作爲「mycontainer」給出。然後我改變了它的一些其他的工作。 – Kulasangar 2015-02-13 03:11:56

+0

我提供了正確的值,但仍然無法完成羣集創建操作。操作失敗,代碼爲'400'。集羣留下狀態:'錯誤'。消息: 'PreClusterCreationValidationFailure'。 At line:1 char:1 + New-AzureHDInsightCluster -Config $ conf -Credential $ creds -Name $ clusterName -L + CategoryInfo:NotSpecified:(:) [New-AzureHDInsightCluster],HDInsightClusterCreateException + FullyQualifiedErrorId:Microsoft.WindowsAzure。 Management.HDInsight.HDInsightClusterCreateException,Microsoft.WindowsAzure.Management.HDInsight.Cmdlet.PSCmdlets.NewAzureHDInsightClusterCmdlet – Vinu 2015-02-25 14:54:37

+0

@Vinu,您的問題可能與原始版本不同。你可以發佈一個新的問題,幷包含你傳遞給New-AzureHDInsightCluster的任何參數的詳細信息嗎? – RickH 2015-02-25 19:38:13

0

您是否檢查過您的用戶憑證(-Credential <PSCredential>)是否符合「要求」?不幸的是,他們沒有記錄非常好...

  • 用戶名:admin
  • 密碼:[min. 10 characters](至少1個大寫,小寫1,1位和一個特殊字符)
相關問題