The property I was looking for is IgniteConfiguration.workDirectory. (I don't care about persistance for now.) I managed to start a node using:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="grid.cfg" class="org.apache.ignite.configuration.IgniteConfiguration"> <property name="peerClassLoadingEnabled" value="true"/> <property name="workDirectory" value="path-with-rw-permission"/> </bean> </beans> Useful resources: https://apacheignite.readme.io/docs/distributed-persistent-store https://ignite.apache.org/releases/latest/javadoc/org/apache/ignite/configuration/IgniteConfiguration.html -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
