The log file “bug-log/bug-log.log” is the error message reported after running “deno-mongodb-tls.js”.
The log file “bug-log/mongodb-log.log” is the connection error information reported by the MongoDB database.
The folder “mongodb-ssl” holds the SSL certificate I generated for MongoDB.
The file “mongod.cfg” is the configuration file I wrote for MongoDB.
The file “deno-mongodb-tls.js” is an example of an SSL-enabled database connection that I wrote, but it never works. The error messages are reported in the two log files in the folder “bug-log” mentioned above.
The file “node-mongodb-tls.mjs” is an example I wrote to run on node and connect to a MongoDB database with “SSL” enabled. it works in node@23.1.0.
The code in the files “deno-mongodb-tls.js” and “node-mongodb-tls.mjs” is almost identical, but the results are different.
I personally tried several different ways, all still failed, by analyzing the MongDB database logs several times and found that “deno” never passed the SSL certificate I set in the code to the MongDB database, so that the MongDB database in the verification of the connection, the MongDB database prompts Errors: “Error receiving request from client. Ending connection from remote”, “SSLHandshakeFailed ”, “SSLHandshakeFailed”, “no SSL certificate provided by peer; connection rejected”, but I have definitely set the required SSL certificate in the code, and almost the same code is working in the “node” is running successfully and connects to the MongDB database and can read and write to the MongDB database.
Version: deno-2.0.4 OS: Windows 11 23H2 Professional 22631.4391 mongodb: mongodb-windows-x86_64-enterprise-8.0.3 MongoDB Node.js Driver(npm package): 6.10.0 node: 23.1.0 npm: 10.9.0
My demo address:https://github.com/LP1994/deno-mongodb-tls
The log file “bug-log/bug-log.log” is the error message reported after running “deno-mongodb-tls.js”.
The log file “bug-log/mongodb-log.log” is the connection error information reported by the MongoDB database.
The folder “mongodb-ssl” holds the SSL certificate I generated for MongoDB.
The file “mongod.cfg” is the configuration file I wrote for MongoDB.
The file “deno-mongodb-tls.js” is an example of an SSL-enabled database connection that I wrote, but it never works. The error messages are reported in the two log files in the folder “bug-log” mentioned above.
The file “node-mongodb-tls.mjs” is an example I wrote to run on node and connect to a MongoDB database with “SSL” enabled. it works in node@23.1.0.
The code in the files “deno-mongodb-tls.js” and “node-mongodb-tls.mjs” is almost identical, but the results are different.
I personally tried several different ways, all still failed, by analyzing the MongDB database logs several times and found that “deno” never passed the SSL certificate I set in the code to the MongDB database, so that the MongDB database in the verification of the connection, the MongDB database prompts Errors: “Error receiving request from client. Ending connection from remote”, “SSLHandshakeFailed ”, “SSLHandshakeFailed”, “no SSL certificate provided by peer; connection rejected”, but I have definitely set the required SSL certificate in the code, and almost the same code is working in the “node” is running successfully and connects to the MongDB database and can read and write to the MongDB database.