Details
-
Improvement
-
Resolution: Won't Fix
-
Minor - P4
-
None
-
None
Description
The sample command here uses connection string that does not include authentication-related options:
mongobiuser create biuser mongodb://your.mongodbhost.com:27017/db1
|
It may not be obvious for some people that these options are required if authentication is enabled - the command will succeed regardless but the BI connector will fail to work later due to authorization failures.
It would be better if we use a sample connection string as:
mongobiuser create biuser mongodb://user:password@your.mongodbhost.com:27017/db1
|