卡桑德拉连接垃圾

时间:2015-07-23 16:00:50

标签: cassandra

我有一个集群的casssandra但是我无法在7199上通过JMX登录。我知道你必须启用删除访问权限。在哪里做?当您通过JConsole连接时拒绝连接。感谢您的所有帮助

2 个答案:

答案 0 :(得分:2)

出于安全原因,Cassandra JMX仅侦听localhost。如果要打开远程连接,请阅读https://wiki.apache.org/cassandra/JmxSecurity以获取有关如何正确执行此操作的详细信息。设置JMX的配置位于conf/cassandra-env.sh

答案 1 :(得分:-1)

要远程连接到cassanra,您需要更新 /conf/cassandra.yaml 目录下的 cassandra.yaml 文件。

请参阅link

种子:" 127.0.0.1"

种子:" YOUR_LOCAL_MACHINE_IP" (*保留双打报价)

listen_address:localhost

listen_address:YOUR_LOCAL_MACHINE_IP

rpc_address:localhost

rpc_address:YOUR_LOCAL_MACHINE_IP