|
The spec currently claims that drivers default to using domain sockets to connect to mongocryptd when possible:
// Defaults to "mongodb://%2Ftmp%2Fmongocryptd.sock" if domain sockets are available or
// "mongodb://localhost:27020" otherwise.
However, due to SERVER-41826 drivers should instead default to connecting via "mongodb://localhost:27020" and not the domain socket. It's very possible all drivers are already connecting via "mongodb://localhost:27020" by default (as Java, Node, Python, Go do, and .NET doesn't support domain sockets).
|