I am running Ignite on Linux. There are 4 VMs where I have set up Ignite. All
the VMs have exact same configuration. The details for one of the VM
configuration is below - 

Installation directory - /opt/ignite
Command used to run ignite (from /opt/ignite directory) - ./bin/ignite.sh
Command used to run visor cli (from /opt/ignite directory) -
./bin/ignitevisorcmd.sh -cfg=config/default-config.xml


The contents of the config file (/opt/ignite/config/default-config.xml) - 

<?xml version="1.0" encoding="UTF-8"?>

<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="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>IP Address
1</value>
                                                        <value>IP Address
2</value>
                                                        <value>IP Address
3</value>
                                                        <value>IP Address
4</value>
                                                </list>
                                        </property>
                                </bean>
                        </property>
                </bean>
        </property>
    </bean>
</beans>


/Please consider IP Address 1/2/3/4 as the correct IPs for my VMs./



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Ignite-2-0-visor-issue-tp12460p13993.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to