KIRY4 edited a comment on issue #15451:
URL: https://github.com/apache/airflow/issues/15451#issuecomment-823726044
I'm not sure if it related with mentioned error. But now I'm trying to login
to freshly installed airflow 2.0.2 with LDAP integration and I can't login with
my credentials. Log of web pod full of mentioned error/warning:
`WARNING - Exception when importing
'airflow.providers.google.common.hooks.leveldb.LevelDBHook' from
'apache-airflow-providers-google' package: No module named
'airflow.providers.google.common.hooks.leveldb'.`
Everything works fine for me with 2.0.0 and 2.0.1 with my credentials from
AD. My Airflow deployed on AKS if it matters.
Here is my webserver_config.py (maybe it also will be useful):
```
import os
from airflow import configuration as conf
from flask_appbuilder.security.manager import AUTH_LDAP
basedir = os.path.abspath(os.path.dirname(__file__))
SQLALCHEMY_DATABASE_URI = conf.get('core', 'SQL_ALCHEMY_CONN')
CSRF_ENABLED = True
AUTH_TYPE = AUTH_LDAP
AUTH_ROLE_ADMIN = 'Admin'
AUTH_USER_REGISTRATION = True
#AUTH_USER_REGISTRATION_ROLE = "Admin"
AUTH_USER_REGISTRATION_ROLE = "User"
AUTH_LDAP_SERVER = 'ldaps://***.com:636'
AUTH_LDAP_SEARCH = "DC=***,DC=com"
AUTH_LDAP_BIND_USER = '***'
AUTH_LDAP_BIND_PASSWORD = '***'
AUTH_LDAP_UID_FIELD = '***'
AUTH_LDAP_USE_TLS = False
AUTH_LDAP_ALLOW_SELF_SIGNED = False
AUTH_LDAP_TLS_CACERTFILE = '/opt/airflow/ldap/ldap_ca.crt'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]