CyberMonk
CyberMonk

Reputation: 1622

How do you deploy from Visual Studio to a remote on-prem Service Fabric cluster?

I have installed a Service Fabric unsecured development cluster on a shared, on-premises VM with firewall turned off. I can connect to it locally (on same VM) via PowerShell, and deploy locally via Visual Studio. However I am unable to connect or deploy to the cluster from any other box on our network, getting the following error message from PowerShell:

Connect-ServiceFabricCluster : No cluster endpoint is reachable, please check if there is connectivity/firewall/DNS issue.

As I said, the firewall is turned off on the machine hosting the cluster. What am I doing wrong?

Upvotes: 0

Views: 807

Answers (1)

OneBox deployment of Service Fabric (installed via the SDK) does not support remote publishing.

Template for configuring a shared dev/test cluster consisting of three nodes can be found here: https://azure.microsoft.com/en-us/documentation/articles/service-fabric-cluster-creation-for-windows-server/#download-the-service-fabric-standalone-package

/Mikkel

Upvotes: 1

Related Questions