For some reason when I try to start Cassandra with this command:

bin/cassandra -f

The terminal gets stuck on:

Listening for thrift clients...

Is it normal? Does that mean that Thrift can talk too Thrift?

I am using Ubuntu Server.

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

That sounds normal. Cassandra -f doesn't create an interactive session, it just runs Cassandra in the foreground, but as a server process.

To interact with Cassandra, you can start a CLI session in another terminal window. See http://wiki.apache.org/cassandra/CassandraCli for details of how to do this, and the commands that you can run.

There are also clients for various programming languages - see http://wiki.apache.org/cassandra/ClientOptions

See also start cassandra with "./bin/cassandra -f", how to have back the terminal window?

link|improve this answer
This is the command to use: ./bin/cassandra -f & – Jean-Nicolas Boulay Desjardins Jun 11 '11 at 5:11
1  
Or just omit the -f in the first place. There's no point telling Cassandra to run in the foreground (-f) and then immediately put it in the background (&) – DNA Jun 11 '11 at 10:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.