Team:
While running SSTABLELOADER I see the below error:
All host(s) tried for query failed (tried: /192.168.56.101:9042 (com.datastax.driver.core.exceptions.ConnectionException: [/192.168.56.101:9042] Unexpected error during transport initialization (java.lang.RuntimeException: javax.security.auth.login.LoginException: No LoginModules configured for DseClient))) com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /192.168.56.101:9042 (com.datastax.driver.core.exceptions.ConnectionException: [/192.168.56.101:9042] Unexpected error during transport initialization (java.lang.RuntimeException: javax.security.auth.login.LoginException: No LoginModules configured for DseClient)))
Searching in Google landed me hits related to Kerberos based authentication and port issues:
> I haven't enable Kerberos based authentication. I followed instructions in https://docs.datastax.com/en/security/6.7/security/Auth/secEnableDseAuthenticator.html
authentication_options: enabled: true default_scheme: internal
I see the following line uncommented in DSE.YAML file. Looks like dafault settings:
kerberos_options: keytab: resources/dse/conf/dse.keytab service_principal: dse/_HOST@REALM http_principal: HTTP/_HOST@REALM qop: auth
> Port 9042 looks good
theowl@c-node2:/etc/dse$ netstat -anp | grep 9042 tcp 0 0 192.168.56.101:9042 0.0.0.0:* LISTEN -
The command I used:
theowl@c-node2:/etc/dse$ sudo sh -c 'sstableloader -d 192.168.56.101 /var/lib/cassandra/data/killr_video/user_by_email-*'
DSE Version:
DSE 6.7.8
Any help is highly appreciated.