-1

I am trying to start grid-gain by bin\ignite.bat examples\config\example-cache.xml

Also I have set JAV_HOME and GRIDGAIN_HOME PATH

To start gridgain I am using below code

Grid g = GridGain.start("/C:/Grid-Gain/ignite-fabric-1.0.0-RC1/ignite-fabric-1.0.0-RC1/examples/config/example-cache.xml");

I also tried with partial path

Grid g = GridGain.start("examples/config/example-cache.xml");

but all the time it is throwing exception

Exception in thread "main" class org.gridgain.grid.GridException: Failed to find grid configuration in: file:/C:/Grid-Gain/ignite-fabric-1.0.0-RC1/ignite-fabric-1.0.0-RC1/examples/config/example-cache.xml

All the time it shows this error.

Becuzz
  • 6,846
  • 26
  • 39

1 Answers1

0

You are using GridGain and Ignite interchangeably, while you probably want to use Apache Ignite only. GridGain is an enterprise product sitting on top of the Apache Ignite.

Please take a look at Apache Ignite Getting Started guide and the rest of the documentation. There is also a community forum there where you can ask questions.

Dmitriy
  • 2,282
  • 1
  • 11
  • 7