大地测量定位器和服务器由在Spring引导应用程序中运行的嵌入式Spring数据大地测量启动
尝试使用gfsh
连接:
gfsh>connect
Connecting to Locator at [host=localhost, port=10334] ..
Locator could not find a JMX Manager
我得到了这个:
定位器找不到JMX管理器
gemfire的应用日志显示:
在localhost/127.0.0.1上启动分发定位器的服务器位置[10334]
此外,日志确认应用了这些设置:
jmx-manager=true
jmx-manager-start=true
locators=localhost[10334]
那为什么是这条消息?
也许有任何其他方法可以连接到现有的gemfire缓存?
我建议直接使用spring-boot-data-geodde
并启动您的服务器和定位器,如下所示:
@SpringBootApplication
@CacheServerApplication(name = "MySpringBootApacheGeodeCacheServerApplication")
@EnableLocator
@EnableManager
public SpringBootApacheGeodeCacheServerApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootApacheGeodeCacheServerApplication.class, args);
}
}
请看看嵌入式(对等