07/12/2012: How I Update To A New Version of Accumulo In Development
How I Update To A New Version of Accumulo In Development
There may be a better technique.
cd /usr/local tar xvfz /tmp/accumulo-1.5.0-SNAPSHOT-dist.tar.gz mv accumulo-1.5.0-SNAPSHOT accumulo-1.5.0-SNAPSHOT_`date +%Y_%m_%d` # Copy the old configuration cp $ACCUMULO_HOME/conf/* accumulo-1.5.0-SNAPSHOT_`date +%Y_%m_%d`/conf chown -R accumulo:accumulo accumulo-1.5.0-SNAPSHOT_`date +%Y_%m_%d` # Switch the symbolic link to the new directory. ln -s accumulo-1.5.0-SNAPSHOT_`date +%Y_%m_%d` accumulo sudo su - accumulo cd $ACCUMULO_HOME mkdir logs mkdir walogs bin/start-all.sh
07/07/2012: Installing Accumulo on Linode
I updated my github playground with steps to install Accumulo on a Linode server. The whole process, from buying the server to running the Accumulo shell, took less than 30 minutes. The steps are located at https://github.com/medined/accumulo_playground/blob/master/README_LINODE.txt.