unconfigured table schema_columnfamilies

3.9k views Asked by At

I am new to cassandra and I am using cassandra version 2.1.17 which supports cassandra-cli . I created a keyspace using the following command

create keyspace employee with placement_strategy='org.apache.cassandra.locator.SimpleStrategy' and strategy_options = {replication_factor:1};

However when I use the command
use employee;

I get the following error

unconfigured table schema_columnfamilies

I am unable to understand what is the issue. Can someone help me resolve this issue. Thanks in advance.

1

There are 1 answers

2
Amogh Huilgol On

Figured out the solution. The issue was that I had previously installed another version of cassandra and uninstalled it. It turned out that even though i uninstalled the application , some processes of previous version were still running. I killed those processes manually and restarted the cassandra server.