Mongo shell : 无法更新日志级别(setLogLevel 不是函数)
Mongo shell : can't update log level (setLogLevel is not a function)
我正在尝试提高我的 mongo 日志级别但没有成功:
MongoDB shell version: 2.6.10
connecting to: test
> use TreeDB
switched to db TreeDB
> db.setLogLevel(5,"query")
2018-01-23T12:11:28.221+0100 TypeError: Property 'setLogLevel' of object TreeDB is not a function
如何正确使用该功能?
> db.setLogLevel
TreeDB.setLogLevel
db.help()不输出这个函数。
docs.mongodb 从 3.0 开始在此处引用它:https://docs.mongodb.com/manual/reference/method/db.setLogLevel/
我正在使用 ubuntu 16.04,mongoshell 2.6.10,mongo:3.6.2(通过 docker)
如评论中所述,我必须至少安装 3.0 版本的 mongoshell。
这应该在 https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
之后完成
我正在尝试提高我的 mongo 日志级别但没有成功:
MongoDB shell version: 2.6.10
connecting to: test
> use TreeDB
switched to db TreeDB
> db.setLogLevel(5,"query")
2018-01-23T12:11:28.221+0100 TypeError: Property 'setLogLevel' of object TreeDB is not a function
如何正确使用该功能?
> db.setLogLevel
TreeDB.setLogLevel
db.help()不输出这个函数。
docs.mongodb 从 3.0 开始在此处引用它:https://docs.mongodb.com/manual/reference/method/db.setLogLevel/
我正在使用 ubuntu 16.04,mongoshell 2.6.10,mongo:3.6.2(通过 docker)
如评论中所述,我必须至少安装 3.0 版本的 mongoshell。
这应该在 https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
之后完成