I've created a simple test that uses the "start-locator" property to start a co-located locator. I'm able to connect programmatically through a ClientCache but when I try to connect using GFSH, I get the following message:
"Connecting to Locator at [host=localhost, port=31034] ..
Exception occurred. null"
Here's the code for creating the cache:
new CacheFactory()
.set("start-locator", "localhost[31034]")
.set("deploy-working-dir", testDirectory)
.set("license-working-dir", testDirectory)
.set("writable-working-dir", testDirectory)
.create();
We're trying to streamline the client/server network for local developer deployment. Any help to steer me in the right direction would be much appreciated.