Created
December 19, 2019 14:58
-
-
Save ukcoderj/64bfa261bcdd30a3af71a3936d0a6050 to your computer and use it in GitHub Desktop.
Fix a Broken Local Service Fabric Cluster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# WARNING: YOU MUST STOP 'SERVICE FABRIC HOST SERVICE' IN SERVICES FIRST | |
# IF THE APPLICATION IS STUCK IN 'STARTING', RESTART YOUR MACHINE | |
# | |
# This script will completely reset the local cluster | |
# | |
Remove-Item 'C:\SfDevCluster' -Recurse -Force -ErrorAction Stop | |
New-Item -ItemType directory -Path 'C:\SfDevCluster' | |
Set-Location 'C:\Program Files\Microsoft SDKs\Service Fabric\ClusterSetup' | |
./DevClusterSetup.ps1 -PathToClusterDataRoot 'C:\SfDevCluster\Data' -PathToClusterLogRoot 'C:\SfDevCluster\Log' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment