You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by spruitt <st...@hp.com> on 2016/01/13 15:18:07 UTC

Client failed to authenticate

I am trying to get Artemis running and having a security not obvious.  This
is my first pass at Artemis and I installed it on windows as a service.  I
have checked the artemis-roles.properties, artemis-users.properties, and
broker.xml files and all seems ok as per the user credentials to create a
session.  I'm trying to get the example AMQPQueueExample.java working.

Code snippet is: 

ConnectionFactory connectionFactory = new
JmsConnectionFactory("amqp://localhost:5672");
connection = connectionFactory.createConnection("admin", "xxx");
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

I am executing from the IntelliJ debugger and after trying to create a
session the console has this snippet:

Connected to the target VM, address: '127.0.0.1:57367', transport: 'socket'
[AmqpProvider:(1):[amqp://localhost:5672]] INFO
org.apache.qpid.jms.sasl.SaslMechanismFinder - Best match for SASL auth was:
SASL-PLAIN
Exception in thread "main" javax.jms.JMSSecurityException: Client failed to
authenticate at
org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.handleSaslFail(AmqpSaslAuthenticator.java:51)
at
org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.authenticate(AmqpSaslAuthenticator.java:93)
 at
org.apache.qpid.jms.provider.amqp.AmqpProvider.processSaslAuthentication(AmqpProvider.java:826)



--
View this message in context: http://activemq.2283324.n4.nabble.com/Client-failed-to-authenticate-tp4705907.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Client failed to authenticate

Posted by Robbie Gemmell <ro...@gmail.com>.
I had similar tried things out with authentication (default user from
a newly created instance) yesterday when Steve posted on the Qpid
users list, and had no issue. I assume the problem stems from the
bootstrap config issues mentioned in the other thread.

Robbie

On 15 January 2016 at 01:46, Justin Bertram <jb...@apache.com> wrote:
> I made a few modifications to the AMQP example to enable security on the broker and to pass the appropriate username and password from the client and everything worked as expected.  Can you provide me with a way to reproduce the failure you're seeing?
>
>
> Justin
>
> ----- Original Message -----
> From: "spruitt" <st...@hp.com>
> To: users@activemq.apache.org
> Sent: Wednesday, January 13, 2016 8:18:07 AM
> Subject: Client failed to authenticate
>
> I am trying to get Artemis running and having a security not obvious.  This
> is my first pass at Artemis and I installed it on windows as a service.  I
> have checked the artemis-roles.properties, artemis-users.properties, and
> broker.xml files and all seems ok as per the user credentials to create a
> session.  I'm trying to get the example AMQPQueueExample.java working.
>
> Code snippet is:
>
> ConnectionFactory connectionFactory = new
> JmsConnectionFactory("amqp://localhost:5672");
> connection = connectionFactory.createConnection("admin", "xxx");
> Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
>
> I am executing from the IntelliJ debugger and after trying to create a
> session the console has this snippet:
>
> Connected to the target VM, address: '127.0.0.1:57367', transport: 'socket'
> [AmqpProvider:(1):[amqp://localhost:5672]] INFO
> org.apache.qpid.jms.sasl.SaslMechanismFinder - Best match for SASL auth was:
> SASL-PLAIN
> Exception in thread "main" javax.jms.JMSSecurityException: Client failed to
> authenticate at
> org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.handleSaslFail(AmqpSaslAuthenticator.java:51)
> at
> org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.authenticate(AmqpSaslAuthenticator.java:93)
>  at
> org.apache.qpid.jms.provider.amqp.AmqpProvider.processSaslAuthentication(AmqpProvider.java:826)
>
>
>
> --
> View this message in context: http://activemq.2283324.n4.nabble.com/Client-failed-to-authenticate-tp4705907.html
> Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Client failed to authenticate

Posted by Justin Bertram <jb...@apache.com>.
I made a few modifications to the AMQP example to enable security on the broker and to pass the appropriate username and password from the client and everything worked as expected.  Can you provide me with a way to reproduce the failure you're seeing?


Justin

----- Original Message -----
From: "spruitt" <st...@hp.com>
To: users@activemq.apache.org
Sent: Wednesday, January 13, 2016 8:18:07 AM
Subject: Client failed to authenticate

I am trying to get Artemis running and having a security not obvious.  This
is my first pass at Artemis and I installed it on windows as a service.  I
have checked the artemis-roles.properties, artemis-users.properties, and
broker.xml files and all seems ok as per the user credentials to create a
session.  I'm trying to get the example AMQPQueueExample.java working.

Code snippet is: 

ConnectionFactory connectionFactory = new
JmsConnectionFactory("amqp://localhost:5672");
connection = connectionFactory.createConnection("admin", "xxx");
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);

I am executing from the IntelliJ debugger and after trying to create a
session the console has this snippet:

Connected to the target VM, address: '127.0.0.1:57367', transport: 'socket'
[AmqpProvider:(1):[amqp://localhost:5672]] INFO
org.apache.qpid.jms.sasl.SaslMechanismFinder - Best match for SASL auth was:
SASL-PLAIN
Exception in thread "main" javax.jms.JMSSecurityException: Client failed to
authenticate at
org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.handleSaslFail(AmqpSaslAuthenticator.java:51)
at
org.apache.qpid.jms.provider.amqp.AmqpSaslAuthenticator.authenticate(AmqpSaslAuthenticator.java:93)
 at
org.apache.qpid.jms.provider.amqp.AmqpProvider.processSaslAuthentication(AmqpProvider.java:826)



--
View this message in context: http://activemq.2283324.n4.nabble.com/Client-failed-to-authenticate-tp4705907.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.