Then I start the connetor but failed with exception [No LoginModules configured for SolaceGSS]
It looks like connector doesn't find login.conf, as after I comment the configuration of login.conf, connector starts with the same error.
Then, I modify the shell script of Kafka: bin/kafka-run-class.sh
add below arg in java execution path at the end of the shell script file:
-Djava.security.auth.login.config=/connectors/login.conf
like this:
I confuse why the login.conf can not be found if it is configured in solace_source.properties, and can be found if I put it in java execution path directly.
I want to use connector to connect to solace service with kerberos authentication. so I uncomment kerberos configuration options and set values:
Then I start the connetor but failed with exception [No LoginModules configured for SolaceGSS]
It looks like connector doesn't find login.conf, as after I comment the configuration of login.conf, connector starts with the same error. Then, I modify the shell script of Kafka: bin/kafka-run-class.sh add below arg in java execution path at the end of the shell script file: -Djava.security.auth.login.config=/connectors/login.conf like this:
Then, the connector start success.!
I confuse why the login.conf can not be found if it is configured in solace_source.properties, and can be found if I put it in java execution path directly.