Windows Azure Service Fabric count not start

荒凉一梦 提交于 2019-12-12 03:45:38

问题


To the point: Having trouble setting up Windows Azure Service fabric. Please help.

System Detail:

  • Windows 8.1 Enterprise
  • Windows Azure SDK 2.6 (installed before Service Fabri SDK install)
  • SQL Server 2012

Other errors also appear but those are before trying to start the service. Following is error screen shot when I tried to expand Node view

Troubleshooting link available in the SDK tutorial is not helping. I tried with un/installing the SDK but no luck.


回答1:


Could you try running the following command from an elevated powershell session?

if((get-ItemProperty 'hklm:\software\microsoft\Windows NT\CurrentVersion\perflib\009' Counter).Counter[0] -eq ''){echo "Corrupt"} if([System.Diagnostics.PerformanceCounterCategory]::Exists("Service Fabric Actor") -and ![System.Diagnostics.PerformanceCounterCategory]::GetCategories().CategoryName.Contains("Service Fabric Actor")) { echo "Corrupt" }

If this command prints out Corrupt, you will need to run 'lodctr /R' to recover the performance counter registry on your system. Depending on your system, you might need to run lodctr from c:\windows\syswow64 and c:\windows\system32.



来源:https://stackoverflow.com/questions/30939665/windows-azure-service-fabric-count-not-start

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!