apache/airflow

Airflow SambaHook authentication issue with SpnegoError and Kerberos

Open

#29.590 aperta il 17 feb 2023

Vedi su GitHub
 (2 commenti) (0 reazioni) (0 assegnatari)Python (16.781 fork)batch import
area:providersgood first issuekind:feature

Metriche repository

Star
 (44.809 star)
Metriche merge PR
 (Merge medio 7g 18h) (834 PR mergiate in 30 g)

Descrizione

Apache Airflow Provider(s)

samba

Versions of Apache Airflow Providers

I am trying to connect to a Samba server in Airflow using the SambaHook class. The Samba server requires Kerberos authentication.

I have already defined a Samba connection in Airflow using the following parameters: Host,Schema and Extra {"auth": "kerberos"}

airflow connections add "samba_repo" --conn-type "samba" --conn-host "myhost.mywork.com" --conn-schema "fld" --conn-extra '{"auth": "kerberos"}'

I'm trying to use the SambaHook class in Airflow to connect to a Samba server. When I run my code, I get the following error:

Failed to authenticate with server: SpnegoError (1): SpnegoError (16): Operation not supported or available, Context: Retrieving NTLM store without NTLM_USER_FILE set to a filepath, Context: Unable to negotiate common mechanism

However, when I use smbclient to connect to the same server using Kerberos authentication from the Docker terminal, it works fine with the command: smbclient //'myhost'/'fld' -c 'ls "\workpath\*" ' -k

What I tried: I set up a connection to the Samba server in Airflow using the SambaHook class and tried to use the listdirmethod to retrieve a list of files in a specific directory.

What I expected to happen: I expected the listdir method to successfully retrieve a list of files in the specified directory from the Samba server.

What actually resulted: Instead, I encountered the following error message: Failed to authenticate with server: SpnegoError (1): SpnegoError (16): Operation not supported or available, Context: Retrieving NTLM store without NTLM_USER_FILE set to a filepath, Context: Unable to negotiate common mechanism

Apache Airflow version

2.2.0

Operating System

Debian GNU/Linux

Deployment

Docker-Compose

Deployment details

No response

What happened

No response

What you think should happen instead

No response

How to reproduce

No response

Anything else

No response

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

Guida contributor