1

I just installed datastax 2.2.2 on my ubuntu:12.04 machine from tarball I started services using bin/dse cassandra -s. I din't set any env variables.But it starts the service.

bin/dse/bin/nodetool status

It lists out list of valid commands where status is not there. How do i verify my cassandra and solr is up?

AM i missing something? ANy ideas?

Gibbs
  • 21,904
  • 13
  • 74
  • 138

3 Answers3

4

nodetool status should work. DSE 4.6 is the latest version, why are you on 2.2?

Watch your system and output logs as the node starts up to see gossip hints etc. It will end with something like:

done waiting for other nodes

You can also check if the service is running --

ps -ef | grep dse
phact
  • 7,305
  • 23
  • 27
2

nodetool status

Run this command in terminal and you will get all information related IP Address, Load, Tokens, Owns, Host, ID, and Rack

Neeraj Sharma
  • 1,322
  • 10
  • 9
1
    bin/nodetool ring -h localhost

It will return about the solr and cassandra status.

Gibbs
  • 21,904
  • 13
  • 74
  • 138