Pete S
Pete S

Reputation: 1

Service Fabric call failed in Service Fabric Explorer

When trying to expand the node view in Service Fabric Explorer, I get the Red box with Service Fabric call failed and the Fabric Exception is supplied address was invalid. I have tried refreshing but get the same error.

Upvotes: 0

Views: 3363

Answers (1)

Sean McKenna
Sean McKenna

Reputation: 3714

It sounds like your local cluster did not successfully install.

To check, try running the following from a new PowerShell Admin window:

Connect-ServiceFabricCluster localhost:19000

If everything's good, you should see an output like this pretty quickly:

enter image description here

Otherwise, it will try to connect for a while and eventually return an error like this:

enter image description here

Try running the cluster setup script again and wait for it to successfully complete before going over to Service Fabric Explorer.

Upvotes: 2

Related Questions