-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prevent windows firewall popup #21
Comments
I don't think so. That's a security feature of windows. |
As far as I know the only option is to disable the firewall... |
I think it's only presenting because the process opens a tcp listener. Is there a param you can pass to the process to prevent that? I mean, we don't need the tcp listener for in-memory work right? On 19 Aug 2016, 20:12 +0800, Johannes Hoppe [email protected], wrote:
|
Sure. Clients communicate with the database server through a regular TCP/IP socket. see: https://docs.mongodb.com/manual/reference/mongodb-wire-protocol/ |
So what we're saying is there's no avoiding the listener and so no avoiding the firewall warning? On 20 Aug 2016, 20:02 +0800, Johannes Hoppe [email protected], wrote:
|
As far as I know – yes. My firewall is disabled… |
We discovered this issue today too. I think I might have a solution - the window doesn't pop up when you pass the flag --bind_ip 127.0.0.1 to mongod.exe. |
That sounds like a good idea. Safe assumption too I think. |
Yep. Localhost is fine. Please keep in mind that #master is right now .NET Core only. |
.NET 4.6 - https://github.com/Mongo2Go/Mongo2Go/tree/dotNET_4.6 |
Thank you for creating a branch for the .NET 4.6 since we're using that version :) I'll try to update both of them. |
yay, cool! 👍 i think this would be a 1.1 and a 2.0.0-alpha2 |
I saw that you merged my PRs. How do we proceed ? What can I do now? |
I will bake two nuget packages today and upload them. |
Thank you! We will update as soon as we get those :) |
…#21 (prevent windows firewall popup) FYI @kubal5003
Both NuGet packages are on nuget.org now. For .NET Framework 4.6.1
For .NET Standard 1.6
|
I tested this today (1.1.0). It works fine :) The firewall window does not appear. I also made sure to remove the firewall rule prior to testing. Do we want to test 2.1.0 before closing this? |
I think it's not necessary in this case! Thanks for testing! 👍 |
Can we prevent the Windows Firewall popup from appearing?
I'm getting it when I reset the test environment or restart VS, etc.
The text was updated successfully, but these errors were encountered: