尝试通过Azure Powershell创建群集时PreClusterCreationValidation失败
问题描述:
我目前正在与Windows Azure
一起工作,以便按照步骤here设置并运行群集。但是,当我试图执行command
我得到这个错误:尝试通过Azure Powershell创建群集时PreClusterCreationValidation失败
New-AzureHDInsightCluster : Unable to complete the cluster create operation left behind state: 'Error'. Message: 'PreClusterCreationValidationFailure'.
我看看到this,但我与它有点困惑。输入值是什么意思?是ClusterSizeInNodes
?也可能由于相同的集群名称已存在而发生此错误?
任何帮助,将不胜感激。
答
如果您提供的参数与彼此不兼容,例如请求一个数据中心区域中的群集并指向另一个区域中的默认存储容器,则有时您会看到PreClusterCreationValidationFailure消息。
如果情况并非如此,请包括您提供的具体参数的更多细节。
答
您是否检查过您的用户凭证(-Credential <PSCredential>
)是否符合“要求”?不幸的是,他们没有记录非常好...
- 用户名:
admin
- 密码:
[min. 10 characters]
(至少1个大写,小写1,1位和一个特殊字符)
谢谢,我修复。这是由于'容器名称',我把它作为“mycontainer”给出。然后我改变了它的一些其他的工作。 – Kulasangar 2015-02-13 03:11:56
我提供了正确的值,但仍然无法完成群集创建操作。操作失败,代码为'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
@Vinu,您的问题可能与原始版本不同。你可以发布一个新的问题,并包含你传递给New-AzureHDInsightCluster的任何参数的详细信息吗? – RickH 2015-02-25 19:38:13