I've installed elk stack from repo packages on Centos 7.7. I´ve successfully started collecting data with metric beat and filebeat. But I can´t authenticate against active directory
I tested with openldaptools from the server I have elastic, and can authenticate and query de AD server.
On the elastic.yml file I've added
xpack.security.enabled: true
xpack:
security:
authc:
realms:
active_directory:
poc_ad:
order: 0
enabled: true
domain_name: "poc.net"
bind_dn: "CN=ldapdesa,CN=Users,DC=poc,DC=net"
bind_password: "SuperSecret"
url: ldap://srvad01:389, ldap://srvad02:389
user_search:
base_dn: "CN=Users,DC=poc,DC=net"
scope: "sub_tree"
filter: "(&(objectClass=user)(userPrincipalName={0}))"
load_balance:
type: "failover"
I've also tested with curl against the API, had no success.