MongoDB 可以有集合级别的权限吗?
MongoDB 可以有集合级别的权限吗?类似于SQL数据库中的表级权限?
这是我能在上面找到的唯一东西。看起来像旧票。
Can you have collection level permissions in MongoDB? Similar to table level permissions in a SQL database?
This is the only thing I could find on it. Looks like an old ticket.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于这么晚才来的人(就像我一样),MongoDB 现在支持集合级授权。
请参阅:http://docs.mongodb.org/manual/core/集合级别访问控制/
For anyone coming to this late (like I did), MongoDB now has support for collection-level authorization.
See: http://docs.mongodb.org/manual/core/collection-level-access-control/
不,还没有,MongoDB 访问控制目前仅在数据库级别可用。根据您的要求,可以选择在应用程序代码中实现安全模型来控制对集合级别的访问。
Nope, not yet, MongoDB access control is currently only available at the database level. Depending on your requirements, it might be an option to implement a security model in application code that controls access down to the collection level.