我使用 [services.msc] 启动了我的 CassandraDaemon 线程,而不是作为 Windows 中的服务,而是通过以下代码。
public static void start() {
if (cassandraDaemon == null) {
cassandraDaemon = new org.apache.cassandra.thrift.CassandraDaemon();
cassandraDaemon.activate();
}
}
上面的代码启动了 cassandra 服务,我测试了它,它可以工作。但是 nodetool.bat 文件没有运行。
当我使用以下命令nodetool -h IPADDRESS info
时,它会产生
无法连接到“IPADDRESS:7199”:连接被拒绝:连接
作为回复。
我在初始化期间添加了以下一个
System.setProperty("cassandra-foreground","true");
System.setProperty("com.sun.management.jmxremote","true");
System.setProperty("com.sun.management.jmxremote.port","7199");
System.setProperty("com.sun.management.jmxremote.authenticate","false");
System.setProperty("com.sun.management.jmxremote.ssl", "false");**
我应该通过该节点工具添加什么编码才能运行....
如果有人知道请回复我,因为我非常需要它......