我已经建立了一个 bigchaindb 的本地服务器,并在其上进行了一些区块链操作。但是在生产环境中,我需要设置它的集群,那么如何使用 MongoDB 作为后端来设置 bigchaindb 服务器的多个节点或集群?
问问题
354 次
1 回答
0
在 BigchainDB 2.0 中,MongoDB 是唯一的后端数据库选项。您可以使用任何集群部署选项,包括:
- 每个节点使用一个 VM 并且所有软件都作为进程运行的新节点:https ://docs.bigchaindb.com/projects/server/en/master/simple-network-setup.html
- 每个节点在自己的 Kubernetes 集群上运行的旧版本:https ://docs.bigchaindb.com/projects/server/en/master/production-deployment-template/index.html
- 您自己的自定义部署过程。
于 2018-05-28T06:32:27.623 回答