you may be setting the ip static, as follows

<bean class="org.apache.ignite.configuration.IgniteConfiguration">
  ...
  <property name="discoverySpi">
    <bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
      <property name="ipFinder">
        <bean
class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
          <property name="addresses">
            <list>
              <value>1.2.3.4</value>
              
              
              <value>1.2.3.5:47500..47509</value>
            </list>
          </property>
        </bean>
      </property>
    </bean>
  </property>
</bean>

reference http://apacheignite.gridgain.org/v1.1/docs/cluster-config



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Two-network-interface-on-os-tp8058p8059.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to