Search code examples
azureazure-service-fabric

Azure Service Fabric local deployment results in DnsService error: DnsService UDP listener is unable to start


The Problem

I am developing an Azure Service Fabric stateless service. While I have deployed locally before, I am currently encountering the following error:

DnsService UDP listener is unable to start. Please make sure there are no processes listening on the DNS port 53.

DnsService error

Things I have tried

  • Redeploying locally
  • Both stopping and resetting the cluster from the tray menu
  • Removing the cluster from my machine
  • Checking to make sure the cluster manifest has the DnsService parameter IsEnabled set to True
  • Starting a new application from scratch
  • Azure Service Fabric (OneBox) has constantly failed DnsService has not provided a solution

Edit:

Other relevant info

I can deploy successfully to an Azure cluster, so I am fairly certain that the problem lies in the local cluster. But removing the cluster and redeploying does not solve the error!

How do I solve this DnsService error?


Solution

  • I uninstalled Docker per @Taran's answer to another question. This was the most resilient answer as I was then able to deploy successfully x 10. :-)