Rajashekhar Meesala
Rajashekhar Meesala

Reputation: 329

How to secure an Apache Ignite cluster

How can I provide an authentication for my Apache ignite cluster. Basically I'm looking for setting username and password. Otherwise allowing list of trusted(white listed) clients is also fine.

Upvotes: 1

Views: 895

Answers (2)

Amar Gajbhiye
Amar Gajbhiye

Reputation: 484

Apache Ignite does not provide these kinds of security capabilities with its open-source version. As mentioned by @Michel, you can either implement it on your own or use commercial Gridgain distribution.

Here, you can find steps to implement a custom plugin.

You would need to implement GridSecurityProcessor which would be used to authenticate joining node.

This blog has detailed steps that can be followed to write a custom security plugin.

https://www.bugdbug.com/post/how-to-secure-apache-ignite-cluster

Upvotes: 0

Michael
Michael

Reputation: 650

This can be implemented by your own: https://apacheignite.readme.io/docs/advanced-security or you can use 3rd party-ready solutions: https://docs.gridgain.com/docs/security-and-audit

Upvotes: 1

Related Questions