Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check ScyllaDB installed version?

I have run nodetool version and showing db version is 3.0.8 but if I am running scylla --version then it showing 2.1.1-0.20180325.cce455b1f. please help me which one is correct?

like image 223
LetsNoSQL Avatar asked Feb 04 '19 13:02

LetsNoSQL


2 Answers

nodetool reports its own version (related to the Cassandra version it was derived from). The correct version number is from scylla --version.

like image 162
Avi Kivity Avatar answered Nov 16 '22 02:11

Avi Kivity


scylla --version is one option. If you want to be sure what version Scylla started with (for example to be sure upgrade was successful), you can also run the following:

curl -X GET "http://localhost:10000/storage_service/scylla_release_version"

like image 29
TomerSan Avatar answered Nov 16 '22 02:11

TomerSan