Category: nosql
-
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…
-
LuxIO – Installation and Test of the NoSQL key value database
Lux IO is a small performant key value storage. It is B+-tree based and is quite space efficient and fast for large data sets. I tested it on my laptop with 20 million strings. Installation cd /tmp wget http://luxio.sourceforge.net/luxio-0.2.2.tar.gz tar xvf luxio-0.2.2.tar.gz cd luxio-0.2.2/ sed -i ‘s//\n#include /g’ util.h #add line “include ” in util.h…
-
Kyoto Cabinet – Installation with Lua, compression using zip, lzo and lzma
Install Kyoto Cabinet # http://torum.net/2010/01/kyotocabinet-alpha-release/ ulimit -u unlimited #zlib compression sudo apt-get install -y zlib1g-dev build-essential #lzma compression sudo apt-get install -y lzma liblzma-dev #lzo compression sudo apt-get install -y liblzo2-dev sudo apt-get remove -y libtokyocabinet-dbg libtokyocabinet-dev tokyocabinet-bin libtokyocabinet9 sudo apt-get install -y xz-utils #lua #sudo apt-get install -y build-essential lua5.2 liblua5.2-0 liblua5.2-0-dbg liblua5.2-dev sudo…
-
Kyoto Tycoon – Installation with Lua and Memcached Protocol
Prepare Install Kyoto Cabinet Installation #kyototycoon, works with lua 5.1 not 5.2 or later! mkdir -p /tmp/build cd /tmp/build version=”0.9.56″ wget http://fallabs.com/kyototycoon/pkg/kyototycoon-$version.tar.gz tar xvzf kyototycoon-$version.tar.gz cd kyototycoon-$version #./configure –with-kc –enable-lua #error fix #ktdbext.h:274:29: error: ‘getpid’ was not declared in this scope # append line #include #http://code.google.com/p/modpagespeed/issues/detail?id=420 if [ “`grep ‘include ‘ ./ktdbext.h`” == “” ]…