saltstack-formulas / mongodb-formula

http://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html
Other
31 stars 121 forks source link

Add Robo3T #55

Closed noelmcloughlin closed 5 years ago

noelmcloughlin commented 5 years ago

Robo3T is visual tool for exploring and manipulating MongoDB.

https://robomongo.org/

noelmcloughlin commented 5 years ago

Robo 3T can also connect to MongoDB in the Cloud. Just reverse engineer values for “address”, “port”, “database”, “password” from the cloud connection string.

Given the url: mongodb://mydatabase:mysecretpassword@ds011802.mlab.com:11902/mydatabase the Robo 3T connection parameters will be-

                address: `ds011802.mlab.com`
                port: `11902`
                database: `mydatabase`
                password: `mysecretpassword`