neo4j REST LDAP 安全性
如何通过LDAP访问neo4j REST独立服务器?默认情况下,neo4j 中没有任何安全性的东西。在我看来,我应该在 neo4j 上运行 Apache Http 服务器,它在内部使用 jetty。但我也知道,jetty可以做LDAP,但它是neo4j的一部分,所以很难配置。我应该走哪条路?
How to make acces to neo4j REST standalone server by LDAP? By default, there is no any security things in neo4j. In my opinion, i should run Apache Http server over neo4j, which use jetty inside. But I also know, that jetty can do LDAP, but it is part of neo4j, so its hard to configure. Wich way should I go?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前我认为有两种可能。正如您提到的,第一个是将 Neo4j 与 Apache 放在一起,并让 Apache 承担安全工作负载。
另一种方法则更具侵入性,那就是为 JAX-RS(或 servlet 过滤器)编写一个过滤器,然后将其注册到 Jersey。如果您愿意编写一些代码,那么第二个为您提供了一个单一的解决方案。
Right now I think there are two possibilities. The first, as you mention, is to front Neo4j with Apache and let Apache take on the security workload.
The other is much more invasive, and that's to write a filter for JAX-RS (or a servlet filter) and get that registered with Jersey. If you're comfortable with hacking a bit of code, the second gives you a single box solution.