I'm running MongoDB on one computer and want to connect to the server instance from another computer on the same network.
Going into Mongo shell gives me the following output for both computers: connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb
with a different instance: Implicit session: session { "id" : UUID(...) }
.
I tried the proposed solutions from here and here to no avail. Thought that binding the IP to 0.0.0.0
would help, but it didn't.
Any additional suggestions from someone who dealt with a similar issue?