Reputation: 61
db = await Db.create("mongodb://10.0.2.2:27017/bestchat");
I have mongoDB on my pc. if I try connect to mongo on emulator it works fine.
db = await Db.create("mongodb://192.168.1.33:27017/bestchat");
But on real device I use wifi network local ip like 192.168.1.33 and it not work. What the problem?
Upvotes: 3
Views: 383
Reputation: 61
OK, the reason is win firewall. I add rule for mongo and it works
Upvotes: 1