0

我在 Windows Server 2012 R2 Datacenter 机器上安装了 Datastax Community Edition v2.0.3。安装 vanilla 后,我无法使用 OpsCenter 连接到数据库,因为代理无法启动:页面顶部显示“已连接 1 个代理中的 0 个”。我可以使用 CQLSH 连接到数据库本身。v2.0.2 不会出现此问题。

我的datastax_opscenter_agent-stderr.log文件包含以下内容:

2013-12-05 16:16:54 Commons Daemon procrun stderr initialized
Exception in thread "Initialization" clojure.lang.ExceptionInfo: throw+: {:type :bad-permissions, :message "Unable to locate the cassandra.yaml configuration file. If your configuration file is not located with the Cassandra install, please set the 'conf_location' option in the Cassandra section of the OpsCenter cluster configuration file and restart opscenterd. Checked the following directories: [\"/etc/dse/cassandra/cassandra.yaml\" \"/etc/cassandra/conf/cassandra.yaml\" \"/etc/cassandra/cassandra.yaml\" \"C:\\\\Program Files\\\\DataStax Community\\\\apache-cassandra\\\\bin\\\\conf\\\\cassandra.yaml\"]"} {:object {:type :bad-permissions, :message "Unable to locate the cassandra.yaml configuration file. If your configuration file is not located with the Cassandra install, please set the 'conf_location' option in the Cassandra section of the OpsCenter cluster configuration file and restart opscenterd. Checked the following directories: [\"/etc/dse/cassandra/cassandra.yaml\" \"/etc/cassandra/conf/cassandra.yaml\" \"/etc/cassandra/cassandra.yaml\" \"C:\\\\Program Files\\\\DataStax Community\\\\apache-cassandra\\\\bin\\\\conf\\\\cassandra.yaml\"]"}, :environment {tar-location "C:\\Program Files\\DataStax Community\\apache-cassandra\\bin\\conf\\cassandra.yaml", conf nil, checked-files ["/etc/dse/cassandra/cassandra.yaml" "/etc/cassandra/conf/cassandra.yaml" "/etc/cassandra/cassandra.yaml" "C:\\Program Files\\DataStax Community\\apache-cassandra\\bin\\conf\\cassandra.yaml"]}}
    at opsagent.util.cassandra_util$cassandra_conf_location.invoke(cassandra_util.clj:118)
    at opsagent.util.cassandra_util$get_cassandra_conf.invoke(cassandra_util.clj:130)
    at opsagent.opsagent$create_thrift_conf_vars.invoke(opsagent.clj:52)
    at opsagent.opsagent$setup_thrift.invoke(opsagent.clj:138)
    at opsagent.jmx$determine_ip.invoke(jmx.clj:333)
    at opsagent.jmx$setup_jmx$fn__1309.invoke(jmx.clj:350)
    at clojure.lang.AFn.run(AFn.java:24)
    at java.lang.Thread.run(Unknown Source) 

实际上目录中有一个cassandra.yaml文件C:\Program Files\DataStax Community\apache-cassandra\conf,它应该在哪里。上面的消息表明它查看了C:\\Program Files\\DataStax Community\\apache-cassandra\\bin\\conf\\cassandra.yaml,但是(注意 \bin)。

根据日志的建议,在 中设置conf_location选项会opscenter\conf\clusters\local.conf导致相同的错误。

通过这一切,Windows 防火墙已被关闭。

编辑

我一直在修修补补,现在我在日志中得到了同样的异常,除了它一直在寻找的路径cassanda.yaml已经从

'C:\Program Files\DataStax Community\apache-cassandra\bin\conf\cassandra.yaml'

'C:\Program Files\DataStax Community\utils\conf\cassandra.yaml'

我不知道我做了什么来改变这一点。

我试过复制cassandra.yaml到上面的目录。这消除了 中的异常datastax_opscenter_agent-stderr.log,但 OpsCenter 仍然显示“已连接 1 个代理中的 0 个”。但是,仪表板现在在图表中显示数据。我也可以向模式中添加一个键空间,但是在我创建它之后它不会显示出来。不过,它可以使用 访问CLQSH。显然,cassandra.yaml在两个不同的地方拥有也不理想。

4

3 回答 3

3

我通过如下设置 conf_location 属性解决了这个问题:

conf_location = C:\Program Files\DataStax Community\apache-cassandra\conf\cassandra.yaml

最初我在路径周围使用引号,但这不起作用。删除引号就可以了。

于 2013-12-12T16:18:37.987 回答
3

在安装 DataStax Community Edition v1.2.15 时,我在 Windows 7 x64 中遇到了同样的问题。我让它工作了,然后在备份和回滚之后,我使用 Beyond Compare 来确定究竟是什么改变真正解决了这个问题。khaledh 的其他正确答案和等效的 SF question中存在一些歧义,因此我提供了更完整的答案。

在 C:\Program Files\DataStax Community\opscenter\conf\clusters\local.conf 中,..的默认内容

[cassandra]
seed_hosts = 127.0.0.1

.. 应该改为 ..

[cassandra]
seed_hosts = 127.0.0.1
conf_location = C:\\Program Files\\DataStax Community\\apache-cassandra\\conf\\cassandra.yaml

重新启动服务,然后在 OpsCenter 中如果仍然显示“0 of 1 个代理”,请单击“立即修复”链接。就我而言,直到我单击此链接,它才自我更新并显示“1 of 1”,而没有任何提示或警报。

于 2014-02-22T19:37:50.823 回答
0

我通过在代理配置文件 address.yaml 中添加条目来解决此问题,

脚步,

  1. 登录代理机器

  2. 停止代理

  3. 如果尚未添加,请添加 JAVA_HOME

  4. 编辑(如果不存在则创建)address.yaml(如果您使用包管理器安装了 OpsCenter 代理,则位于 /etc/datastax-agent/)

  5. 添加条目为

cassandra_conf:

  1. 启动代理

  2. 重新启动 opscenter - 新代理不会出现,直到您重新启动 opscenter

cassandra_conf:/usr/lib/cassandra-2.0.5/conf/cassandra.yaml

创建如果不存在

(对于 Opscenter 和代理的 DataStax 5.0.1 版)

于 2014-11-17T19:30:06.770 回答