我已经在RHEL 7上构建了一个3节点的MongoDB 3.2.3集群。
由于加密是此版本MongoDB中的一项新功能,因此我尝试在配置文件中以其他方式启用它。以下是我的配置文件的一部分:
net:
port: 27017
bindIp: 127.0.0.1, # Listen to local interface only, comment to listen on all interfaces.
security:
authorization: enabled
keyFile: /data/mongodb-keyfile/auth-keyfile
encryption:
enabled: true
Keyfile: /data/encryp-keyfile
尝试使用本地密钥文件启用加密。
当我尝试使用上述配置重新启动服务时,加密配置服务将终止。
有人可以指导我如何为MongoDB中的静态数据启用加密吗?