I was running local ignite(8.7.21) server in local below is the confirmation log that ignite server is up and running. however when I'm trying to connect from Java client facing below issue any idea ?
local server log:
Topology snapshot [ver=11, locNode=34f4abec, servers=1, clients=0, state=ACTIVE, CPUs=2, offheap=2.0GB, heap=6.0GB] ^-- Baseline [id=0, size=1, online=1, offline=0]
Issue:
Caused by: class org.gridgain.grid.internal.processors.nodevalidation.NodeValidationException: GridGain node cannot be in one cluster with Ignite node [locNodeAddrs=[machine name/0:0:0:0:0:0:0:1, /10.136.68.128, /127.0.0.1], rmtNodeAddrs=[ machine name/0:0:0:0:0:0:0:1, /10.136.68.128, /127.0.0.1]]
defualt-cache.xml from Java client
<bean id="igniteBean" class="org.apache.ignite.configuration.IgniteConfiguration" abstract="true">
<property name="discoverySpi">
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="localPort" value="48500"/>
<property name="localPortRange" value="5"/>
</bean>
</property>
</bean>
default-xml which I used to start ignite server
<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="private.ignite.cfg" class="org.apache.ignite.configuration.IgniteConfiguration" abstract="true">
<property name="discoverySpi">
<bean class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
<property name="localPort" value="48500"/>
<property name="localPortRange" value="5"/>
</bean>
</property>
</bean>