I am trying to install a JBOSS/ES3 clustered env and am currently in the config manager trying to bootstrap the db.
Based on the logs I am having a locator issue.
2012-04-30 14:07:05,360 ERROR [STDERR] (http-10.24.210.48-8080-1) Caused by: com.gemstone.gemfire.GemFireConfigException: Unable to contact a Locator service. Operation either timed out or Locator does not exist. Configured list of locators is "[njes1s7462<v0>:22345, NJES1S7580<v0>:22345]".
Back in ES2.5 when i started the locators it would create a .locator + gemfire.log
file in the ES2.5\lib\caching folder. When i start it in ES3, no .locator file is created and the gemfire.log is found under the C:\TEMP folder.
Checking the gemfire.log i see that it isn't able to connect to the locators on either node.
[config 2012/04/30 14:52:15.719 EDT GemfireCacheAdapter <SimpleThreadPoolWorker-4> tid=0xdd] Checking for license in "vfszip:/C:/jboss-5.1_mssql2008r2cl/server/LC3_APOC_CL/deploy/adobe-l ivecycle-jboss.ear/adobe-cache-all.jar/gemfireLicense.zip/".
[info 2012/04/30 14:52:15.734 EDT GemfireCacheAdapter <SimpleThreadPoolWorker-4> tid=0xdd] GemFire P2P Listener started on tcp:///10.24.210.48:50490
[info 2012/04/30 14:52:16.812 EDT GemfireCacheAdapter <PingSender> tid=0xfd] unable to connect to locator njes1s7462<v0>:22345
[info 2012/04/30 14:52:17.859 EDT GemfireCacheAdapter <PingSender> tid=0xfd] unable to connect to locator NJES1S7580<v0>:22345
My run.bat file has the following JAVA OPTS added on 1 node
set JAVA_OPTS=%JAVA_OPTS% -Djboss.partition.name=APOC_ES3_CL
set JAVA_OPTS=%JAVA_OPTS% -Dadobeidp.serverName=LC3APOC1 -Dfile.encoding=utf8 -Djava.net.preferIPv4Stack=true -Dprogram.name=%PROGNAME%
set JAVA_OPTS=%JAVA_OPTS% -Dadobe.cache.cluster-locators=10.24.210.48[22345],10.24.210.199[22345]
And
set JAVA_OPTS=%JAVA_OPTS% -Djboss.partition.name=APOC_ES3_CL
set JAVA_OPTS=%JAVA_OPTS% -Dadobeidp.serverName=LC3APOC2 -Dfile.encoding=utf8 -Djava.net.preferIPv4Stack=true -Dprogram.name=%PROGNAME%
set JAVA_OPTS=%JAVA_OPTS% -Dadobe.cache.cluster-locators=10.24.210.48[22345],10.24.210.199[22345]
On the 2nd node. The only difference is the -Dadobeidp.serverName parameter. LC3APOC1 vs LC3APOC2.
I dont think the startlocator.bat is even looking at the run.bat files yet, so i really dont know what the issue is.