Problem with Mongoose + auth
Hi i followed the mongoose example provided by denoland, but if my local database has authentication, mongoose not connect (it freeze on
connect
statemment)
example: https://github.com/denoland/examples/tree/main/with-mongoose
Note: same URI works with node + mongoose10 Replies
is the mongo uri provided to
mongoose.connect
correct?right @spam.wizrad
what kind of authentication does your local mongodb use?
Default, i just set MONGO_INITDB_ROOT_USERNAME and MONGO_INITDB_ROOTPASSWORD
on my docker image as documentation says
https://hub.docker.com//mongo
if i try to connect to mongo atlas with SCRAM auth, give me another problem @spam.wizrad
Uncaught MongoAPIError: Server record does not share hostname with parent URI
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Anyone ever figured out how to get around this?
irrc i encountered this error some times ago and the problem back then was
Deno.resolveDns
returning a DNS ending with a .
but Node.js doesn'tdoes anyone know how to fix this? mongodb and mongoose work fine on node but not deno
and even if i can successfully connect to the database, after a second it spits out an error
@marvinh.
Sounds like a bug in Deno. Can you file an issue for that here https://github.com/denoland/deno/issues ?
GitHub
Issues · denoland/deno
A modern runtime for JavaScript and TypeScript. Contribute to denoland/deno development by creating an account on GitHub.
Sure