Apache Cassandra 3.7 CQLSH 'Unable to connect to any servers'
As described in the ticket - define environment variable CQLSH_NO_BUNDLED and export it.
export CQLSH_NO_BUNDLED=true
It will tell cqlsh (which is Python program) to use external Cassandra Python driver, not the one bundled with the distribution. The bundled Cassandra driver is located in /opt/datastax-ddc-3.7.0/bin, the file name is cassandra-driver-internal-only-3.0.0-6af642d.zip
Then run cqlsh, which is located in /opt/datastax-ddc-3.7.0/bin.
./cqlsh
It is possible that you will need to install Cassandra Python driver (if it was not installed already) using:
pip install cassandra-driver
Note - folder names are for Datastax Cassandra build.