Hello @Dani_S ,
For most of your questions about MongoDB Server, you’ll get the best support by asking in the MongoDB community. Although technical questions are no longer supported on the official forum, you can post your questions on their recognized forums such as Stack Overflow and Reddit.
While these are non-Microsoft websites, they are the official community forums for MongoDB.
That said, I can answer a couple of your questions related to how this affects your MAUI app:
- The standard MongoDB Windows MSI installer does not install side by side. It performs an in-place upgrade, replacing the old version’s binaries with the new version. Your data directory remains in the same location.
- Your MAUI app will connect to whichever MongoDB server is running based on your connection string. The connection string in your MAUI app (usually something like
mongodb://localhost:27017/yourDatabase) points to a specific host and port. Whichever MongoDB service is running on that host/port is what your app will use. - If you need more control or want to run multiple versions simultaneously, you would need to manually install MongoDB in different directories and configure them to use different ports. However, that’s not the standard approach and adds unnecessary complexity.
I hope this clarifies things, and Happy New Year.