RSSAH
RSSAH

Reputation: 153

Cluster authentication

According to this documentation -> https://apacheignite.readme.io/docs/advanced-security, it's said that the authentication mechanism only applies to JDBC connections.

Here is our scenario, we don't need any security per connection from client to server but, we want all clients to authenticate before entering the server topologies which will happen when doing this -> Ignition.getOrStart(CFG).

Is there any way we achieve this?

Upvotes: 1

Views: 47

Answers (1)

Alex K
Alex K

Reputation: 841

Take a look at: https://www.gridgain.com/docs/latest/administrators-guide/security/authentication

You have the option of building your own security plugin as detailed in the Authorization section of the url you mentioned: https://apacheignite.readme.io/docs/advanced-security#section-authorization

More info here: https://www.gridgain.com/docs/latest/administrators-guide/security/custom-authenticators

Upvotes: 2

Related Questions