Last active
August 29, 2015 14:17
-
-
Save bjori/7c512331c8c9b1ed11fc to your computer and use it in GitHub Desktop.
Example mongod server description for running the pecl/mongodb tests. It can also be generated by "make vm test-bootstrap"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"STANDALONE": "mongodb:\/\/192.168.112.10:2000", | |
"STANDALONE_SSL": "mongodb:\/\/192.168.112.10:2100", | |
"STANDALONE_AUTH": "mongodb:\/\/root:[email protected]:2200\/?authSource=admin", | |
"STANDALONE_X509": "mongodb:\/\/C=US,ST=New York,L=New York City,O=MongoDB,OU=KernelUser,[email protected]:2300\/?authSource=$external&authMechanism=MONGODB-X509", | |
"STANDALONE_PLAIN": "mongodb:\/\/root:[email protected]:2400\/?authSource=admin", | |
"REPLICASET": "mongodb:\/\/192.168.112.10:3000,192.168.112.10:3001,192.168.112.10:3002\/?replicaSet=REPLICASET" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment