This MongoDB deployment is intended for use with BOSH 2 deployment
- A deployment of BOSH
- Tested environment
Name | Version |
---|---|
MongoDB | 3 |
BOSH | 261.1 |
-
Bosh 2 deployed
-
Single node
-
service instances represent logical databases on the shared server
-
Authentication supported
-
No service broker
-
You can follow the bosh document to install BOSH firstly
-
Create and upload release
bosh create-release --name=mongodb --version=1.0.0 --final --force
bosh upload-release
-
Create manifest file. You can find an example using BOSH cloud-config in mongodb-deployment.manifest under deployment folder as reference
-
Deploy
bosh -n deploy -d mongodb <deployment_manifest>
bosh run-errand -d mongodb create-admin-user
-
When it completes ,you can check mongodb node using
bosh vms
-
Connect from a mongo client
mongo <mongodb ip>:<port default is 27017>/admin -u admin -p admin
Welcome to contribute through pull request