简体   繁体   English

LDAP集成的ELK屏蔽插件

[英]LDAP integrated ELK shield plugin

We are configuring ELK Shield plugin. 我们正在配置ELK Shield插件。 The ELK server is integrated with LDAP server which is working fine. ELK服务器与运行良好的LDAP服务器集成在一起。 between ELK nodes. ELK节点之间。

The problem we are facing is with the configuration of Shield plugin. 我们面临的问题是Shield插件的配置。 We have followed the official documentation but our Kibana dashboard is not coming up and giving error 502. We have checked almost all the logs which did not help. 我们遵循了官方文档,但我们的Kibana仪表板没有出现,并显示错误502。我们检查了几乎所有无济于事的日志。 For Kibana, we have used Apache reverse proxy. 对于Kibana,我们使用了Apache反向代理。

Thanks. 谢谢。

One option that I've done for this exact setup is to just have Apache do the LDAP auth: 我为此精确设置所做的一个选择是让Apache执行LDAP身份验证:

<Directory /store/data/www>
  AuthType Basic
  AuthName Restricted
  AuthBasicProvider ldap
  AuthLDAPURL "ldap://<IP>:389/OU=XXX,OU=XXXX,DC=XX,DC=XXX?XXXXX"
  AuthLDAPBindDN CN=BIND_USER,CN=Users,DC=XX,DC=XXX
  AuthLDAPBindPassword <PASSWORD>
  AuthzLDAPAuthoritative off
  Require valid-user
</Directory>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM