Skip to content

Instantly share code, notes, and snippets.

@ukcoderj
Created December 19, 2019 14:58
Show Gist options
  • Save ukcoderj/64bfa261bcdd30a3af71a3936d0a6050 to your computer and use it in GitHub Desktop.
Save ukcoderj/64bfa261bcdd30a3af71a3936d0a6050 to your computer and use it in GitHub Desktop.
Fix a Broken Local Service Fabric Cluster
#
# 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