Hi,

Probably you didn't configure node addresses and multicast can't find this
server node, You can use this configuration on client side:

<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>
                            <!-- In distributed environment, replace
with actual host IP address. -->
                        <value>127.0.0.1:47500..47509</value>
                    </list>
                </property>
            </bean>
        </property>
    </bean>
</property>


If this won't help, it makes sense to check logs from server node itself.


Evgenii


пт, 3 апр. 2020 г. в 07:42, salmanbhatti81 <[email protected]>:

> I have been able to successfully run apache ignite with custom config using
> command
>
> docker run -it --net=host -v
> "pathToLocalDirectory"/config:/opt/ignite/apache-ignite/config -e
> "CONFIG_URI=file:///opt/ignite/apache-ignite/config/default-config.xml"
> apacheignite/ignite.
>
> But when i run my java project in intellij i get the message
>
> "IP finder returned empty addresses list. Please check IP finder
> configuration and make sure multicast works on your network...".
>
> Note: the java client project works if i run ignite server using windows
> batch file. Also i have published 47500 port as well . the result is the
> same.
>
>
>
> --
> Sent from: http://apache-ignite-users.70518.x6.nabble.com/
>

Reply via email to