Does GridGain support SSL connection between each cluster member? -


does gridgain support ssl connection between each cluster member? if yes, can show me how that?

thanks, bill

gridgain supports ssl client connections (gridgain provides .net , c++ thin clients), not communication between nodes.

to enable ssl client connections, configure server nodes this:

<bean id="grid.cfg" class="org.gridgain.grid.gridconfiguration">     <!-- enable rest. -->     <property name="restenabled" value="true"/>      <!-- client connection configuration. -->     <property name="clientconnectionconfiguration">         <bean class="org.gridgain.grid.gridclientconnectionconfiguration">             <!-- enable ssl. -->             <property name="resttcpsslenabled" value="true"/>              <!-- provide ssl context factory (required). -->             <property name="resttcpsslcontextfactory">                 <bean class="org.gridgain.client.ssl.gridsslbasiccontextfactory">                     <property name="keystorefilepath" "keystore/server.jks"/>                     <property name="keystorepassword" value="123456"/>                     <property name="truststorefilepath" "keystore/trust.jks"/>                     <property name="truststorepassword" value="123456"/>                 </bean>             </property>         </bean>     </property> </bean> 

you need provide ssl context factory on client configuration.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -