Re: Cassandra Integrated Auth for JMX

2018-12-18 Thread Cyril Scetbon
So it seems we can use jaas with Jolokia as we can do with JMX. Has anyone set it up ? I tried adding authMode=jaas to the Jolokia agent’s configuration in jvm.options and at the end I get the following set of options :

Re: Cassandra Integrated Auth for JMX

2018-12-16 Thread Cyril Scetbon
Good catch Jonathan, I forgot that layer between me and JMX… So I need to add the authentication at Jolokia’s level and not JMX. Thank you ! — Cyril Scetbon > On Dec 16, 2018, at 12:50 PM, Jonathan Haddad wrote: > > Jolokia is running as an agent, which means it runs in process and has

Re: Cassandra Integrated Auth for JMX

2018-12-16 Thread Jonathan Haddad
Jolokia is running as an agent, which means it runs in process and has access to everything within the JVM. JMX credentials are supplies to the JMX server, which Jolokia is bypassing. You'll need to read up on Jolokia's security if you want to keep using it:

Cassandra Integrated Auth for JMX

2018-12-16 Thread Cyril Scetbon
Hey guys, I’ve followed https://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/secureJmxAuthentication.html to setup JMX with Cassandra’s internal auth using Cassandra 3.11.3 However