如何判别你在使用的mongoDB是企业版还是社区版? 下面整理了一些方法,方便不时之需。 方法1: > db.serverBuildInfo().modules 如果命令输出[ "enterprise" ],那么MonG
如何判别你在使用的mongoDB是企业版还是社区版? 下面整理了一些方法,方便不时之需。
方法1:
> db.serverBuildInfo().modules
如果命令输出[ "enterprise" ],那么MonGoDB为企业版,如果输出为“[ ]”的话就是社区版
方法2:
mongod -version
如下所示,如果"modules"的输出为[]表示社区版,如果输出为enterprise表示MongoDB为企业版
社区版:
#mongod -version
db version v4.4.4
Build Info: {
"version": "4.4.4",
"gitVersion": "8db30a63Db1a9d84bdcad0c83369623f708e0397",
"openSSLVersion": "OpenSSL 1.0.1e-fips 11 Feb 2013",
"modules": [],
"allocator": "tcmalloc",
"environment": {
"distmod": "rhel70",
"distarch": "x86_64",
"target_arch": "x86_64"
}
}
企业版
#mongod –version
db version v3.2.4
git version: e2ee9ffcf9f5a94fad76802e28cc978718bb7a30
OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013
allocator: tcmalloc
modules: enterprise
build environment:
distmod: rhel62
distarch: x86_64
target_arch: x86_64
方法3:
mongod -h | grep snmp
在shell中执行上面命令,如果没有输出,则说明MongoDB为社区版,如果有输出型为企业版
方法4:
db.runCommand({buildInfo:1})
参考资料:
https://stackoverflow.com/questions/33160352/how-to-check-if-mongodb-enterprise-is-in-use
--结束END--
本文标题: MongoDB如何判别是企业版还是社区版?
本文链接: https://lsjlt.com/news/8178.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0