Report this

What is the reason for this report?

Building ENV mongodb string with CA_CERT

Posted on February 17, 2022

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



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!

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.

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Dark mode is coming soon.