I am using laravel and mongodb service. How do I connect mongodb via Apps platform ? For droplet I use “pecl install mongo” to install extension.
Have already added mongodb service to Apps.
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hey there!
To connect to MongoDB you would need to add
"ext-mongodb": "*"
to therequire { ... }
section of your composer.json. You would then need to runcomposer update
to regenerate your composer.lock file.DigitalOcean MongoDB instances require connecting with a CA certificate. You can use bind variables to inject it by creating an environment variable like:
CA_CERT=${db-mongodb-nyc1-12345.CA_CERT}
.Hope this helps! Nate