Authentication on a sharded cluster is achieved by…
Check all that apply:
- passing a
--authoption tomongos - passing a
--authoption to eachmongod - passing a
--authoption to each mongod and to mongos - enabling internal authentication between members using keyfiles
- enabling internal authentication between members using
X.509certificates
Answer
Authentication on a sharded cluster is achieved by…
- enabling internal authentication between members using keyfiles
- enabling internal authentication between members using X.509 certificates
- Authentication on a sharded cluster is enabled by enabling internal authentication. It doesn’t matter if you use keyfiles or X.509 certificates.
Authentication on a sharded cluster is not achieved by…
- passing a
--authoption tomongos - There is no
--authoption formongos. - passing a –auth option to each
mongod - This would enable client authentication on each mongod, which would not enable authentication on communication via the mongos.
- assing a
--authoption to each mongod and tomongos - There is no
--authoption for mongos.