Misleading warning message regarding LDAP - Authelia v4.39.16 #11478
-
|
Upon startup, the Authelia systemd service reports the following warning:
While it appears to be harmless, this warning sounds extremely misleading. I can confirm Authelia works fine and as expected. I'm using LLDAP as my authentication backend to manage my users/groups database. For reference, here's my Authelia configuration (the # User database settings
authentication_backend:
ldap:
address: 'ldap://127.0.0.1:3890'
implementation: 'lldap'
base_dn: 'dc=domain,dc=org'
users_filter: '(&({username_attribute}={input})(objectClass=person))'
additional_groups_dn: 'ou=groups'
groups_filter: '(&(|(objectClass=groupOfNames)(objectClass=groupOfUniqueNames))(member={dn}))'
attributes:
username: 'uid'
group_name: 'cn'
mail: 'mail'
display_name: 'displayName'
group_search_mode: 'filter'
user: 'uid=authelia,ou=people,dc=domain,dc=org'
password: '<REDACTED>'My LLDAP config: verbose=false
ldap_host = "127.0.0.1"
ldap_port = 3890
http_host = "127.0.0.1"
http_port = 17170
jwt_secret = <REDACTED>
ldap_base_dn = "dc=domain,dc=org"
ldap_user_dn = "admin"
ldap_user_pass = <REDACTED>
force_ldap_user_pass_reset = "always"
database_url = "sqlite:///var/lib/lldap/users.db?mode=rwc"
key_file = ""
key_seed = <REDACTED>
[smtp_options]
[ldaps_options]Environment: The host is a LXC container running on Proxmox 9.1.6 Both Authelia and LLDAP are running on bare-metal on the same machine. I could not find any similar discussions. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
This is already fixed in f24ef6b |
Beta Was this translation helpful? Give feedback.
-
|
This is a bug introduced by a refactor in 4.39.16. It was picked up and fixed already in master f24ef6b. It will be in the next release. |
Beta Was this translation helpful? Give feedback.
This is a bug introduced by a refactor in 4.39.16.
It was picked up and fixed already in master f24ef6b.
It will be in the next release.