$ cqlsh 192.168.0.2 9042 Connected to just4fun at 192.168.0.2:9042. [cqlsh 5.0.1 | Cassandra 2.1.1 | CQL spec 3.2.0 | Native protocol v3] Use HELP for help. cqlsh> DESCRIBE KEYSPACES
<empty> cqlsh> create keyspace foobar with replication = {'class':'SimpleStrategy', 'replication_factor':3}; errors={}, last_host=192.168.0.2 cqlsh> DESCRIBE KEYSPACES; <empty> cqlsh> use foobar; cqlsh:foobar> DESCRIBE TABLES; Keyspace 'foobar' not found. Just trying cassandra 2.1 and encounter the above erorr, can anyone explain why is this and where to even begin troubleshooting? Jason