我有一个开箱即用的Geode版本运行在Windows上.如果我启动定位器使用
start locator --name=ibLocator --properties-file="F:\Geode\config\ibGemfire.properties"然后以相同的方式启动服务器:
start server --name=ibServer --cache-xml-file="F:\Geode\config\ibCache.xml" --properties-file="F:\Geode\config\ibGemfire.properties" --log-level=info当我连接一个GFSH并尝试list regions时,ibCache.xml似乎没有被选中。我得到了no members found

当我尝试list members时,我只能看到定位器,而不是服务器。

如果我尝试创建一个区域,就会得到No Members Found

这就好像我没有在bind addresses文件中得到正确的ibGemfire.properties,但在我看来,它们看起来还不错。
最后,服务器是使用定位器地址172.22.32.1创建的,而不是本地计算机的预期127.0.0.1地址。

发布于 2022-09-07 17:58:02
我基本上不得不在locators文件中注释掉ibGemfire.properties配置,如下所示

然后,当我执行connect、list members和list regions时,我会看到定位器和服务器以及预期的区域。

https://stackoverflow.com/questions/73639449
复制相似问题