The difference between 127.0.0.1 and 0.0.0.0
127.0.0.1 typically refers to loopback local-only terminal 0.0.0.0 depending on the context, this typically instructs an application to listen on every available interface. Example: With following MongoDB configuration
1 2 3 |
net: port: 27017 bindIp: 127.0.0.1 |
Mongo… Read more »