Skip to content

Instantly share code, notes, and snippets.

@vkhazin
Last active September 20, 2017 14:23
Show Gist options
  • Save vkhazin/6cfa78fc86cb65724436f007a546608d to your computer and use it in GitHub Desktop.
Save vkhazin/6cfa78fc86cb65724436f007a546608d to your computer and use it in GitHub Desktop.
Installing DSE Cassandra 4.8.9 on ubuntu 16.04
# Installing Java
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer -y
# Downloading
username='vladimir.khazin@icssolutions.ca'
curl -O -u $username 'https://downloads.datastax.com/enterprise/DataStaxEnterprise-4.8.9-linux-x64-installer.run'
# Installing
chmod +x DataStaxEnterprise-4.8.9-linux-x64-installer.run && \
sudo ./DataStaxEnterprise-4.8.9-linux-x64-installer.run --mode text
# cqlsh did not work
# sudo apt install python -y
# sudo apt install python-pip -y
# pip install cassandra-driver
# Running cqlsh
# export CQLSH_NO_BUNDLED=true && cqlsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment