2017-06-22 22 views
1

我使用的安全簇-5-节点模板部署纳米服务器上的服务织物群集上部署织物群集时(https://github.com/Azure/azure-quickstart-templates/tree/master/service-fabric-secure-cluster-5-node-1-nodetype“Win32Exception:支持的图像类型所需的子系统不存在”纳米服务器

我得到以下错误:

Operation xxx 
Tracking xxx 
StatusConflict 
Provisioning StateFailed 
Timestamp‎6‎/‎22‎/‎2017‎ ‎13‎:‎05‎:‎14 
Duration6 minutes 11 seconds 
TypeMicrosoft.Compute/virtualMachineScaleSets 
Resource Id/subscriptions/xxx/resourceGroups/xxx/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm 
StatusMessage{ 
"status": "Failed", 
"error": { 
"code": "ResourceDeploymentFailure", 
"message": "The resource operation completed with terminal provisioning state 'Failed'.", 
"details": [ 
    { 
    "code": "VMExtensionHandlerNonTransientError", 
    "message": "Handler 'Microsoft.Azure.ServiceFabric.ServiceFabricNode' has reported failure for VM Extension 'ServiceFabricNodeVmExt_vmNodeType0Name' with terminal error code '1007' and error message: 'Install failed for plugin (name: Microsoft.Azure.ServiceFabric.ServiceFabricNode, version 1.0.0.35). Exception:\nSystem.ComponentModel.Win32Exception: The subsystem needed to support the image type is not present\r\n at System.Diagnostics.Process.StartCore(ProcessStartInfo startInfo)\r\n at Microsoft.Azure.Agent.StateMachine.HandlerStateMachine.InvokeCommand(String command, PluginArtifacts pluginArtifact, String pluginVersion, String pluginFolder, String pluginLogFolder, Int32 processWaitTimeout, PluginEventType startType, PluginEventType endType)\r\n at Microsoft.Azure.Agent.StateMachine.HandlerStateMachine.InstallHandler(PluginArtifacts artifact)'" 
    } 
] 
} 
} 

的设置使用的操作系统的ARM模板:

"vmImagePublisher": { 
    "value": "MicrosoftWindowsServer" 
}, 
"vmImageOffer": { 
    "value": "WindowsServer" 
}, 
"vmImageSku": { 
    "value": "2016-Nano-Server" 
}, 
"vmImageVersion": { 
    "value": "latest" 
}, 

如何TRO任何想法ubleshoot这个?

回答

1

目前,Service Fabric Cluster不支持Nano Server。请参阅此link

You are able to create clusters on VMs running these operating systems:

Windows Server 2012 R2

Windows Server 2016

Linux Ubuntu 16.04(in public preview)

您也可以在Azure门户上进行检查。无法选择2016-Nano-Serverenter image description here

相关问题