| Steps To Reproduce: |
On Mac OS X on the current master branch, hash 00b5c825, start mongod:
./mongod --nojournal --sslOnNormalPorts --sslPEMKeyFile jstests/libs/server.pem --sslCAFile jstests/libs/ca.pem --sslCRLFile jstests/libs/crl.pem --auth
|
Connect with the shell:
./mongo --ssl --sslPEMKeyFile jstests/libs/client.pem admin
|
Create a user:
> db.createUser({user: 'admin', pwd: 'pwd', roles: [{role: 'root', db: 'admin'}]})
|
Run "copydbgetnonce":
> db.runCommand({copydbgetnonce: 1, fromhost: null})
|
{
|
"errmsg" : "exception: socket exception [CONNECT_ERROR] for ",
|
"code" : 9001,
|
"ok" : 0
|
}
|
|