Category: cassandra

  • Apache Cassandra CQL3 – Installation and Tests using Python

    Installation using PIP # install python-pip sudo apt-get install -y python-pip # install cql driver sudo pip install cql Manual Installation from the Sources # download path mkdir -p ~/build/python-cql cd ~/build/python-cql # download git clone https://github.com/pcmanus/python-cql cd python-cql sudo python setup.py install Query Example # create and move to diretory mkdir -p ~/build/python-cql cd…

  • pycassa – Gettting started with Apache Cassandra using python

    Install easy_install and pip # install easy_install sudo apt-get install -y python-setuptools # install python-pip sudo apt-get install -y python-pip Install pycassa sudo pip install pycassa Test pycassa cat > cassandra_test.py

  • Apache Cassandra – Installation in Ubuntu

    Installation # add cassandra sources to /etc/apt/sources.list.d/cassandra.sources.list # cassandra version 21x sudo tee /etc/apt/sources.list.d/cassandra.sources.list

  • Cassandra-Cluster-Admin – Apache Cassandra GUI – Installation

    # create download directory mkdir -p ~/build/cassandra-cluster-admin cd ~/build/cassandra-cluster-admin # download git clone https://github.com/sebgiroux/Cassandra-Cluster-Admin # copy to web hosting directory – typically /var/www/ sudo cp -r Cassandra-Cluster-Admin /var/www/cassandra sudo chown -R www-data:www-data /var/www/cassandra #In a web browser, go to http://localhost/cassandra/ # enjoy 🙂 References 1. Home: https://github.com/sebgiroux/Cassandra-Cluster-Admin 2. Overview of Cassandra GUIs: http://wiki.apache.org/cassandra/Administration%20Tools 3. Overview…

  • Helenos – Apache Cassandra GUI – Installation

    Helenos is a web based GUI Cassandra client that helps you to explore data and manage your schema. Supports data browsing via predicates and CQL. Step 1 – Install Jetty Jetty Installation Istructions Step 2 – Install cassui # create download directory mkdir -p ~/build/helenos cd ~/build/helenos # download war wget http://garr.dl.sourceforge.net/project/helenos-gui/helenos-1.3.war # copy to…

  • cassui – Apache Cassandra GUI – Installation

    cassui is a web based interface over Cassandra which runs on any java servlet container like Apache Tomcat or Jetty. In this example, I’ll be using Jetty. Step 1 – Install Jetty Jetty Installation Istructions Step 2 – Install cassui # create download directory mkdir -p ~/build/cassui cd ~/build/cassui # download war wget http://cassui.googlecode.com/files/cassui-0.3-cassandra1.0.war #…

  • DBeaver – Apache Cassandra GUI – Universal Database Manager Installation in Ubuntu

    DBeaver – Universal Database Manager – Installation # download and dbeaver mkdir -p ~/build/dbeaver cd ~/build/dbeaver # download wget http://dbeaver.jkiss.org/files/dbeaver_2.1.1_amd64.deb sudo dpkg -i dbeaver_2.1.1_amd64.deb # link beaver executable sudo ln -s /usr/share/dbeaver/dbeaver /usr/local/bin/dbeaver # download jdbc drivers – which also include support Cassandra # also wget http://dbeaver.jkiss.org/files/driver-pack-2.1.1.zip unzip driver-pack-2.1.1.zip -d driver-pack sudo cp -r driver-pack/*…

  • Cassandra GUI – The Apache Cassandra GUI Project – Installation

    Installation The Cassandra GUI Project is Java Swing based GUI for viewing data in an Apache Cassandra database. Unfortunately the software is no longer in active development. I still find it great because of its simplicity and that it just works. # create download directories mkdir -p ~/build/cassandra-gui cd ~/build/cassandra-gui # download GUI wget http://cassandra-gui.apache-extras.org.codespot.com/files/cassandra-gui-0.8.0-beta1.zip…

  • wso2carbon – Apache Cassandra GUI – Installation on Linux

    Installation # create build directory mkdir -p ~/build/wso2carbon cd ~/build/wso2carbon # download last wso2 library wget https://dl.dropbox.com/s/ji3srheacuvgl6t/wso2carbon-4.0.0-SNAPSHOT.zip # unzip unzip wso2carbon-4.0.0-SNAPSHOT.zip # set execute rights – they are already set correctly 🙂 #chmod +x wso2carbon-4.0.0-SNAPSHOT/bin/wso2server.sh # create directories to copy the runtime data sudo mkdir -p /var/lib/wso2carbon sudo mv wso2carbon-4.0.0-SNAPSHOT /var/lib/wso2carbon sudo ln -s /var/lib/wso2carbon/wso2carbon-4.0.0-SNAPSHOT/bin/wso2server.sh…