Details
-
Task
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
None
Description
Here:
http://docs.mongodb.org/manual/administration/master-slave/#security
Piece of text is unformatted and all on one line, so it comes up as
use local db.addUser(‘repl’, <replpassword>)
|
which won't actually work. Should be two lines, and formatted like the other code blocks on the page:
use local
|
db.addUser(‘repl’, <replpassword>)
|