Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我了解如何使用mongodb.conf 将 logpath 设置为记录到文件或 stdout,但是有没有办法同时记录到两者?例如管道标准输出到日志文件?
您可以在 UNIX 中使用tee命令:
/opt/mongodb/bin/mongod | tee mongod.log
如果 mongodb 将日志记录到标准输出 tee,则将所有输出“复制”到文件 mongod.log。