在MongoDB中配置静态数据的加密

问题描述 投票:0回答:1

我已经在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中的静态数据启用加密吗?

mongodb encryption cluster-computing bigdata
1个回答
0
投票
  • 添加以上配置。
  • 删除Dbpath文件夹,并使用适当的权限进行创建。
  • 再次重新启动mongod。
© www.soinside.com 2019 - 2024. All rights reserved.