I'm trying to setup a leveldb cluster on Redhat 3 node cluster. I have ActiveMQ 5.12.1 zookeeper 3.4.6 installed but I keep getting this error.
INFO | Initiating client connection, connectString=appdev041.corp.local:2181,appdev042.corp.local:2181,appdev043.corp.local:2181 sessionTimeout=2000 watcher=org.apache.activemq.leveldb.replicated.groups.ZKClient@745e3cad WARN | Could not login: the client is being asked for a password, but the Zookeeper client code does not currently support obtaining a password from the user. Make sure that the client is configured to use a ticket cache (using the JAAS configuration setting 'useTicketCache=true)' and restart the client. If you still get this message after that, the TGT in the ticket cache has expired and must be manually refreshed. To do so, first determine if you are using a password or a keytab. If the former, run kinit in a Unix shell in the environment of the user who is running this Zookeeper client using the command 'kinit <princ>' (where <princ> is the name of the client's Kerberos principal). If the latter, do 'kinit -k -t <keytab> <princ>' (where <princ> is the name of the Kerberos principal, and <keytab> is the location of the keytab file). After manually refreshing your cache, restart this client. If you continue to see this message after manually refreshing your cache, ensure that your KDC host's clock is in sync with this host's clock. WARN | SASL configuration failed: javax.security.auth.login.LoginException: No password provided Will continue connection to Zookeeper server without SASL authentication, if Zookeeper server allows it. My loging.config is configured : activemq-domain { org.apache.activemq.jaas.PropertiesLoginModule required org.apache.activemq.jaas.properties.user="users.properties" org.apache.activemq.jaas.properties.group="groups.properties"; }; Client { com.sun.security.auth.module.Krb5LoginModule required useKeyTab=false useTicketCache=true; }; My activemq.xml is set to: <jaasAuthenticationPlugin configuration="activemq-domain" /> and <persistenceAdapter> <replicatedLevelDB directory="activemq-data" replicas="3" bind="tcp://0.0.0.0:0" zkAddress="appdev041.corp.local:2181,appdev042.corp.local:2181,appdev043.corp.local:2181" zkPassword="password" zkPath="/activemq/leveldb-stores" hostname="appdev041.corp.local"/> </persistenceAdapter> I'm not sure what's going on thanks for the help. Thanks Mike -- View this message in context: http://activemq.2283324.n4.nabble.com/LevelDB-setup-tp4703679.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.