Hi all… I am extremely new to Mongo DB… I’ve used SQL Server in the past quit a bit.
I just installed a local instance of Mongo, not Atlas, just a local db instance. This instance happens to be running in a Microsoft Azure VM instance.
I installed the MongoDB plugin into Visual Studio code and I am trying to connect.
When I use the following connection string, inside VS Code running on the exact same VM, I can connect just fine.
However, if I try to connect using VS Code running on the same machine but this time using the IP Address of the machine rather than localhost
```mongodb://xx.xx.xx.xx:27017/
Where xx.xx.xx.xx is the VMs IP Addr, I end up getting this error
`Unable to connect: connect ECONNREFUSED xx.xx.xx.xx:27017`
Ultimatly what I am trying to figure out how to do here is figure out how to connect to the mongo DB running on the VM from a different computer...
Is this possible, or can this not be done from something like the community edition?
Thanks for any help and feedback!