我正在部署一个服务fabric集群,但是在vmss节点出现并报告了服务结构扩展成功后,集群仍然在状态=部署中等待。
当我远程桌面读取事件日志时,我看到:
ERROR: Microsoft.Azure.ServiceFabric.Extension.Core.AgentException: Cluster configuration is not available yet
at Microsoft.Azure.ServiceFabric.Extension.Core.NodeBootstrapAgent.<RunOnce>d__f.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at Microsoft.Azure.ServiceFabric.Extension.Core.NodeBootstrapAgent.<RunAsync>d__0.MoveNext() 请告诉我是否可以收集任何其他帮助调试的信息。
发布于 2017-03-06 11:26:12
尝试添加"NicPrefixOverride“,如提到的这里,段落‘模板’。
当您有多个网络适配器时,它将指示要使用的网络。( Windows容器特性添加了网络适配器)
发布于 2017-03-05 08:51:27
看起来我的问题是,当部署到windows server 2016时。
回到2012年,一切都恢复了。

发布于 2019-11-07 22:38:11
我看到了与封闭网络有关的几个问题,(我们的环境限制了对互联网的访问)我不得不查看1和2的事件日志,我不得不使用NetMon客户端进行# 3。
模板片段:
...
"fabricSettings": [
{
"name": "Security",
"parameters": [
{
"name": "ClusterProtectionLevel",
"value": "[parameters('clusterProtectionLevel')]"
},
//https://github.com/Azure/Service-Fabric-Troubleshooting-Guides/blob/master/Security/SecurityApi_CertGetCertificateChain%20-%20CTL%20accessibility%20-%20CRL%20slow%20warnings.md
{
"name": "CrlCheckingFlag",
"value": "4"
}
]
},
//https://github.com/Azure/Service-Fabric-Troubleshooting-Guides/blob/master/Security/SecurityApi_CertGetCertificateChain%20-%20CTL%20accessibility%20-%20CRL%20slow%20warnings.md
{
"name": "Federation",
"parameters": [
{
"name": "X509CertChainFlags",
"value": "4"
}
]
}
],模板片段:
...
"azureActiveDirectory": {
"tenantId":"<guid>",
"clusterApplication":"<guid>",
"clientApplication":"<guid>"
},https://stackoverflow.com/questions/42605831
复制相似问题