To install the cqlsh
client on alpine linux:
apk --no-cache add python3 py3-pip
pip3 install cqlsh
From the same node:
cqlsh -u user -p password
Over the network:
CQLSH_HOST=cassandra.databases CQLSH_PORT=9042 cqlsh -u user -p password
DESCRIBE keyspaces;