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.
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
parameterIsEnabled
set toTrue
- Starting a new application from scratch
Azure Service Fabric (OneBox) has constantly failed DnsService has not provided a solution
Edit:
Stopping and disabling the ICS service isn't helpful in my case because ICS restarts when I restart my machine.
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?
azure azure-service-fabric
add a comment |
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.
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
parameterIsEnabled
set toTrue
- Starting a new application from scratch
Azure Service Fabric (OneBox) has constantly failed DnsService has not provided a solution
Edit:
Stopping and disabling the ICS service isn't helpful in my case because ICS restarts when I restart my machine.
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?
azure azure-service-fabric
add a comment |
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.
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
parameterIsEnabled
set toTrue
- Starting a new application from scratch
Azure Service Fabric (OneBox) has constantly failed DnsService has not provided a solution
Edit:
Stopping and disabling the ICS service isn't helpful in my case because ICS restarts when I restart my machine.
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?
azure azure-service-fabric
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.
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
parameterIsEnabled
set toTrue
- Starting a new application from scratch
Azure Service Fabric (OneBox) has constantly failed DnsService has not provided a solution
Edit:
Stopping and disabling the ICS service isn't helpful in my case because ICS restarts when I restart my machine.
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?
azure azure-service-fabric
azure azure-service-fabric
edited Jan 3 at 23:05
S Jade
asked Jan 3 at 0:03
S JadeS Jade
5262821
5262821
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
As the error message suggests:
Please make sure there are no processes listening on the DNS port 53.
From the error message show in the screenshot you provided, is it possible to see other services are listening on the port 53, for that reason the service does not work.
This github issue describe the problem.
In summary, the problem is likely to be the Internet Connection Sharing (ICS) service or other service listening on port 53. You have to stop these services to make DNS service work correctly.
To find out the service using the port 53, you can follow the answer from this question:
How can you find out which process is listening on a port on Windows?
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
add a comment |
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. :-)
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014764%2fazure-service-fabric-local-deployment-results-in-dnsservice-error-dnsservice-ud%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
As the error message suggests:
Please make sure there are no processes listening on the DNS port 53.
From the error message show in the screenshot you provided, is it possible to see other services are listening on the port 53, for that reason the service does not work.
This github issue describe the problem.
In summary, the problem is likely to be the Internet Connection Sharing (ICS) service or other service listening on port 53. You have to stop these services to make DNS service work correctly.
To find out the service using the port 53, you can follow the answer from this question:
How can you find out which process is listening on a port on Windows?
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
add a comment |
As the error message suggests:
Please make sure there are no processes listening on the DNS port 53.
From the error message show in the screenshot you provided, is it possible to see other services are listening on the port 53, for that reason the service does not work.
This github issue describe the problem.
In summary, the problem is likely to be the Internet Connection Sharing (ICS) service or other service listening on port 53. You have to stop these services to make DNS service work correctly.
To find out the service using the port 53, you can follow the answer from this question:
How can you find out which process is listening on a port on Windows?
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
add a comment |
As the error message suggests:
Please make sure there are no processes listening on the DNS port 53.
From the error message show in the screenshot you provided, is it possible to see other services are listening on the port 53, for that reason the service does not work.
This github issue describe the problem.
In summary, the problem is likely to be the Internet Connection Sharing (ICS) service or other service listening on port 53. You have to stop these services to make DNS service work correctly.
To find out the service using the port 53, you can follow the answer from this question:
How can you find out which process is listening on a port on Windows?
As the error message suggests:
Please make sure there are no processes listening on the DNS port 53.
From the error message show in the screenshot you provided, is it possible to see other services are listening on the port 53, for that reason the service does not work.
This github issue describe the problem.
In summary, the problem is likely to be the Internet Connection Sharing (ICS) service or other service listening on port 53. You have to stop these services to make DNS service work correctly.
To find out the service using the port 53, you can follow the answer from this question:
How can you find out which process is listening on a port on Windows?
answered Jan 3 at 12:53
Diego MendesDiego Mendes
5,21011827
5,21011827
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
add a comment |
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Instructions for disabling ICS
– S Jade
Jan 3 at 18:54
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
Thanks for answering. Unfortunately, this answer does not solve my problem for the reasons explained by user jupsij in GitHub issue #796. Namely, ICS restarts when I restart my machine. I'll upvote it anyway because it's the best answer so far and it may help someone. :-)
– S Jade
Jan 3 at 19:04
add a comment |
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. :-)
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
add a comment |
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. :-)
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
add a comment |
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. :-)
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. :-)
edited Jan 4 at 20:53
answered Jan 3 at 23:22
S JadeS Jade
5262821
5262821
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
add a comment |
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
Note: I used @HaveNoDisplayName's answer to How should I address a question/answer that indirectly answered another question without it being asked? to figure out how to handle referencing @Taran's answer
– S Jade
Jan 3 at 23:25
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014764%2fazure-service-fabric-local-deployment-results-in-dnsservice-error-dnsservice-ud%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown