对 mongodb
不太了解
测试环境使用的是 test 数据库
用一段时间,test 数据库的权限和数据表就自动被清除了
不知道到哪里可以看到操作日志呢?
运行环境
os: centos 7.x
mongodb: 2.6
淡淡烟草味2017-05-02 09:26:11
1,设置profile,然后查看数据库操作日志,例如:
设置:
db.setProfilingLevel(2)
db.getProfilingLevel()
查看:
db.system.profile.find()
2,重要的系统建议使用MongoDB企业版,企业版提供完整的安全审计功能。
供参考。
Love MongoDB,Have fun!