I am looking for a generic way to ‘securely’ share information between different nodes in an cluster. This information will just be a string however this transfer must happen via SSL.
Performance is not an concern but the information must always be latest.
I have looked at various options –
-
Use ehcache in a clustered mode. But currently it does not allow communication between nodes using SSL.
-
Store the information in the Database and access it. However I don’t want to go this route since someone with DB access can change the values and I want to avoid this(Can’t explain why).
Is there a solution(preferably free) which will allow me to achieve the above?
I researched this issue and finally decided to use Hazelcast cluster to share information.
From the Hazelcast website –
I followed these steps to setup everything – http://serversidestuff.blogspot.sg/2012/11/sharing-information-across-cluster.html