我只是按照下面链接中的说明运行运行Cassandra的EC2上的机器,但我不知道它是什么版本。我怎么知道这个?我知道我错过了一些非常简单的东西,只是不知道在哪里看。
答案 0 :(得分:46)
使用 nodetools
可能更容易./nodetool -h localhost version
答案 1 :(得分:15)
您可以使用 cqlsh 。
$ cqlsh
Connected to Test Cluster at localhost:9160.
[cqlsh 3.1.8 | Cassandra 1.2.18 | CQL spec 3.0.5 | Thrift protocol 19.36.2]
Use HELP for help.
答案 2 :(得分:8)
也可以使用" SHOW VERSION" CQL中的命令:
cqlsh:mydb> SHOW VERSION ;
[cqlsh 5.0.1 | Cassandra 2.1.2 | CQL spec 3.2.0 | Native protocol v3]
答案 3 :(得分:5)
在查看了您列出的说明之后,看起来您正在使用Debian(基于)系统。特别是在“Cassandra Basic Setup”部分中,它说:
Step 3. Install the Debian package for Cassandra
% apt-get update % apt-get install cassandra
At this point, Cassandra will be installed and running. However, it's not configured for a multi-node cluster. So we need to continue.
如果您按照此步骤安装Cassandra,您只需使用Debian的软件包管理工具来查询您安装的软件包:
% dpkg -s cassandra
答案 4 :(得分:2)
尝试describe_version()
方法。
答案 5 :(得分:2)
您可以查询您的包管理器:
dpkg -l cassandra
或
yum info cassandra
答案 6 :(得分:2)
转到Cqlsh命令提示符并键入show version
以获取您正在使用的cassandra版本