Question

Building ENV mongodb string with CA_CERT

I am very close to getting my mongodb database connected in the App Platform. I built up the env value like this

mongodb+srv://${db-mongodb.USERNAME}:${db-mongodb.PASSWORD}@${db-mongodb.HOSTNAME}/testing?authSource=admin&replicaSet=db-mongodb&tls=true&tlsCAFile=${db-mongodb.CA_CERT}

I get this error Error: ENOENT: no such file or directory, open ‘-----BEGIN CERTIFICATE-----’ which makes me think there is another thing like tlsCAFile but to point to a string instead, as the App Platform is giving me this CA_CERT through the ENV. I think it will work once I get this.

Thanks


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Bobby Iliev
Site Moderator
Site Moderator badge
July 5, 2022

Hi there,

Indeed, in order to connect to MongoDB, you need to specify the location of the certificate file rather than passing the certificate as a string to the connection string.

One way to do that is to create the file in your app’s code, before initializing the MongoDB connection. Here is an example for MongoDB:

fs.writeFileSync(path.resolve(__dirname, "mongodb.ca.crt"), process.env.CA_CERT)

Hope that this helps!

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up