SASL is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols.
Questions tagged [sasl]
424 questions
6
votes
0 answers
SMTP authentication error: SASL authentication failure: Password verification failed
I have a VPS server which is running postfix + dovecot as mail server.
I have already created two accounts which work well. Both can send and receive email via STARTTLS and SSL.
But when I added a third account today, it can only receive email but…

Jonathan
- 538
- 1
- 6
- 18
6
votes
7 answers
SMTP with CRAM-MD5 in Java
I need to send email through an (external) SMTP server from Java however this server will only accept CRAM-MD5 authentication, which is not supported by JavaMail.
What would be a good way to get these emails to send? (It must be in Java.)

pvgoddijn
- 12,638
- 15
- 47
- 56
6
votes
3 answers
Does *anyone* have Windows SVNServe authenticating to AD/Kerberos via SASL/GSSAPI?
Scenario: Windows server in a AD domain hosting a Subversion repository using SVNSERVE only (no Apache), and not VisualSVN.
Objective: Authenticate users to the Subversion repository via SASL through GSSAPI to a Windows domain via Kerberos.…

David W
- 10,062
- 34
- 60
5
votes
0 answers
SVN authentication to Active Directory using SASL and OpenLDAP
I have been following all of the guides I found online to get a working svnserve + SASL + OpenLDAP configuration and I had everything working for about a day and then after playing with svn+ssh for a bit I somehow must have broken something and…

v0rtex
- 381
- 3
- 6
5
votes
3 answers
Micronaut Kafka: Health check fails with "Cluster authorization failed"
I am trying to consume messages from a Kafka cluster external to my organization, which requires authentication.
I am receiving messages, so presumably things are partly correct, but I'm getting this error message in the logs:
08:54:50.840…

Imre Kerr
- 2,388
- 14
- 34
5
votes
1 answer
Pip install thrift_sasl on Mac OS 10.14
While I was installing thrift_sasl by pip.
sudo pip install thrift_sasl
I met an error. The error info is below:
Running setup.py install for sasl ... error
Complete output from command /Library/Frameworks/Python.framework/Versions/3.6/bin/python3…

gpxlcj
- 367
- 4
- 14
5
votes
1 answer
How can integrate Keycloak with kafka?
I have configured 3 nodes kafka cluster. Now we want to setup security with Keycloak for kafka. Please let me know what are the ways to do the same.
Question 1: How to implement security for kafka broker to kafka broker with keycloak?
Question 2:…

Ashok Kuramdasu
- 313
- 4
- 15
5
votes
2 answers
sonarqube - active directory ldap error code 49
I've got an instance of sonarqube 5.5 running.
I wanted to use the sonar-ldap-plugin 1.5.1 in order to delegate the authentication and authorization to the Active Directory service of my company.
The configuration for the LDAP plugin is the…

JCh
- 81
- 1
- 2
5
votes
4 answers
Install thrift_sasl for Python in Windows
I have been trying to install the thrift_sasl package through pip in Windows 10 x64.
The thrift_sasl depends on the sasl package, but on running pip install thrift_sasl or pip install sasl, I run into the same error.
creating…

Rahul
- 502
- 7
- 16
5
votes
1 answer
Spark 1.6.1 SASL
I wonder if anyone gotten SASL to work with Spark 1.6.1 on YARN?
Basically Spark documentation states that you only require 3 parameters enabled:
spark.authenticate.enableSaslEncryption=true …

Fabian Tan
- 63
- 2
5
votes
2 answers
SASL library for .net
I am searching for a sasl library for .net.
So far I could only find: Sasl.Net but it looks dead and only implements plain and digest-md5.
Can anyone suggest a good library? Preferably an open-source implementation.

Cohen
- 2,720
- 26
- 24
5
votes
1 answer
Is libsasl2 broken on OSX Yosemite? Missing sasl_client_done
I've been having some trouble with the installed version of libsasl2 (Cyrus SASL).
In particular, it seems that the local headers and sasl_version report version 2.1.26, but no symbol is provided for the global function sasl_client_done.
I'm pretty…

hanumantmk
- 641
- 4
- 12
5
votes
3 answers
How to force SASL on all Zookeeper connections
I have a recent zookeeper build (version=3.4.3-1240972, built on 02/06/2012 10:48 GMT), and am having trouble forcing SASL to be used on all client connections.
Using the local conf/ directory of the release, I have the following configuration…

Marshall Anschutz
- 1,200
- 1
- 12
- 23
4
votes
2 answers
Apache Kafka doens't start after SSL configuration
I have a Apache Kafka (v. 2.13-3.0.0) installed on a remote Ubuntu server.
I follow this tutorial to secure my cluster:
https://medium.com/egen/securing-kafka-cluster-using-sasl-acl-and-ssl-dec15b439f9d
but when I try to start Kafka with jaas conf…

Giuseppe Ricci
- 317
- 8
- 20
4
votes
0 answers
PyHive Connection Error - Could not start SASL
I'm trying to connect to Hive server with PyHive.
So far, I have this:
from pyhive import hive
import pandas as pd
# Create Hive connection
conn = hive.Connection(host="*********", port=10000, auth='NONE')
df = pd.read_sql("select…

A.L.
- 163
- 3
- 10