• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
The Customize Windows > Computer and Internet > Cloud Computing > How to Install Apache Accumulo on Ubuntu (Single Cloud Server Instance)

By Abhishek Ghosh July 26, 2018 10:42 am Updated on July 26, 2018

How to Install Apache Accumulo on Ubuntu (Single Cloud Server Instance)

Advertisement

Accumulo provides robust, scalable data storage. It is a scalable, distributed key-value store based on Google’s Bigtable and built on top of Apache Hadoop, Apache ZooKeeper, and Apache Thrift. Accumulo is the third most popular NoSQL wide column store behind Apache Cassandra and Hbase. Here Are the Steps on How to Install Apache Accumulo on Ubuntu Running on Single Cloud Server Instance. You have read our linked guides in this webpage to complete the work.

How to Install Apache Accumulo on Ubuntu

 

How to Install Apache Accumulo on Ubuntu

 

Hadoop

First install Apache Hadoop with HDFS. This is the service that Accumulo needs. Follow our guide on installing Apache Hadoop on single cloud server. You’ll need password-less SSH as Hadoop need as the system needs connect to the server over SSH without being prompted for password. All details are written in our Hadoop installation guide. We may use hadoop-2.7.3 for example, you should change command, directives to match your version number.

Edit the core-site.xml :

Vim
1
nano /opt/hadoop-2.7.3/etc/hadoop/core-site.xml

Make the fs.defaultFS point to the correct nodename, add :

Vim
1
2
3
4
<property>
   <name>fs.defaultFS</name>
   <value>hdfs://localhost:9000</value>
</property>

Configure HDFS by editing hdfs-site.xml :

Vim
1
nano /opt/hadoop-2.7.3/etc/hadoop/hdfs-site.xml

add :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
<property>
        <name>dfs.replication</name>
        <value>1</value>
    </property>
    <property>
        <name>dfs.name.dir</name>
        <value>>file:///opt/hadoop-2.7.3/hdfs_storage/name</value>
    </property>
    <property>
        <name>dfs.data.dir</name>
        <value>>file:///opt/hadoop-2.7.3/hdfs_storage/data</value>
    </property>

Configure MapReduce by editing mapred-site.xml :

Advertisement

---

Vim
1
2
cp /opt/hadoop-2.7.3/etc/hadoop/mapred-site.xml.template /opt/hadoop-2.7.3/etc/hadoop/mapred-site.xml
nano /opt/hadoop-2.7.3/etc/hadoop/mapred-site.xml

Add :

Vim
1
2
3
4
<property>
         <name>mapred.job.tracker</name>
         <value>localhost:9001</value>
</property>

Initialize the Hadoop storage directory, run Hadoop :

Vim
1
2
3
4
cd /opt/hadoop-2.7.3/bin
./hdfs namenode -format
cd /opt/hadoop-2.7.3/sbin
./start-dfs.sh

We only need HDFS to be running for Accumulo to work. You can test to check if everything is working properly by using :

Vim
1
2
jps
netstat –tupln

At http://server_ip:50070, you’ll get the NameNode interface.

Zookeeper

Install Apache Zookeeper following these steps (match your current version number, steps are pointing what to do) :

Vim
1
2
3
4
5
6
7
8
wget http://www-eu.apache.org/dist/zookeeper/zookeeper-3.4.9/zookeeper-3.4.9.tar.gz
tar -xzvf zookeeper-3.4.9.tar.gz -C /opt/
cp /opt/zookeeper-3.4.9/conf/zoo_sample.cfg /opt/zookeeper-3.4.9/conf/zoo.cfg
## Edit zoo.cfg and set a dataDir
nano /opt/zookeeper-3.4.9/conf/zoo.cfg
## dataDir=/opt/zookeeper-3.4.9/datadir
## start zookeeper
/opt/zookeeper-3.4.9/bin/zkServer.sh start

Apache Accumulo

In previous steps, we installed the prerequisites. We will get the latest binary of Apache Accumulo from here :

Vim
1
http://accumulo.apache.org/downloads/

Download it :

Vim
1
2
wget https://www.apache.org/dyn/closer.lua/accumulo/1.9.2/accumulo-1.9.2-bin.tar.gz
tar -xzvf accumulo-1.9.2-bin.tar.gz -C /opt/

Accumulo has configuration script which simplifies configuration tasks, do the following :

Vim
1
2
cd /opt/accumulo-1.9.2/bin
./bootstrap_config.sh

You’ll get a command line screen to configure heap configuration (512 MB for test), memory map type (jvm), Hadoop version. Make sure that you have set HADOOP_HOME, ZOOKEEPER_HOME at .bashrc with proper version numbered path :

Vim
1
2
export ZOOKEEPER_HOME=/opt/zookeeper-3.4.9
export HADOOP_HOME=/opt/hadoop-2.7.3

Initialize Accumulo HDFS Folder :

Vim
1
/opt/accumulo-1.9.2/bin/accumulo init

Open accumulo-site.xml :

Vim
1
nano accumulo-site.xml

Probably you’ll need to edit some things :

Vim
1
2
3
4
5
6
7
8
9
10
...
    <name>tserver.memory.maps.max</name>
    <value>40M</value>
...
    <name>tserver.cache.data.size</name>
    <value>4M</value>
...
    <name>tserver.cache.index.size</name>
    <value>10M</value>
...

You’ll need system’s max open files to 32768. By default Accumulo is setup to run on localhost. You have to read documents to

Vim
1
2
3
nano /etc/hosts
## add
## ip.add.re.ss  host_name

Edit conf/slaves to change the localhost name :

Vim
1
nano /opt/accumulo-1.9.2/conf/slaves

Start :

Vim
1
2
3
/opt/accumulo-1.9.2/bin/start-all.sh
## start Accumulo shell
/opt/accumulo-1.9.2/bin/accumulo shell

Apache Accumulo web monitor UI will be at http://server_ip:9995. Check ports, running processes if there is any trouble.

Tagged With how to install accumulo on ubuntu aws , install accumulo on aws]

This Article Has Been Shared 7174 Times!

Facebook Twitter Google+ Pinterest
Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Orthopaedic Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to How to Install Apache Accumulo on Ubuntu (Single Cloud Server Instance)

  • List Of Open Source Big Data Visualization Tools

    Here Is List Of Open Source Big Data Visualization Tools Which Will Convert Data In To Graphs, Charts Usable With Tools Like Spark, Hadoop.

  • What is Data Refining in Big Data?

    What is Data Refining in Big Data? In Data Refining we refine disparate data to increase understanding of the data & remove data variability.

  • Overview of Cloud Based Big Data Platforms And Tools From IBM

    Overview of Cloud Based Big Data Platforms And Tools Has Classified the Big Data Tools Offered By IBM to Help Works Like Running Pig Scripts.

  • How to Run Apache SAMOA with Apache S4

    Here is How to Run Apache SAMOA with Apache S4. Full Form of S4 is Simple Scalable Streaming System. It is a pluggable platform to develop applications.

  • How To Install Apache HBase : Ubuntu Single Cloud Server Instance

    Here is Step By Step Guide On How To Install Apache HBase On Ubuntu Single Cloud Server Instance. Hbase is column-oriented distributed datastore,

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us



Subscribe To Our Free Newsletter

You can subscribe to our Free Once a Day, Regular Newsletter by clicking the subscribe button below.

Click To Subscribe

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (15K Followers)
  • Twitter (4.4k Followers)
  • Facebook (5.2k Followers)
  • LinkedIn (3.3k Followers)
  • YouTube (1.5k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • 6 Tips for Securing Your Data from Cyber Attacks as a Remote Worker December 11, 2019
  • What is Process Mining? December 10, 2019
  • Explanation of the ESP32 Vulnerability Warnings December 6, 2019
  • OLTP versus OLAP December 4, 2019
  • What is OLTP (Online Transaction Processing)? December 3, 2019

About This Article

Title: How to Install Apache Accumulo on Ubuntu (Single Cloud Server Instance)
2018-07-26

Author: Abhishek Ghosh
Subjects: Cloud Computing

Is Part Of:


TheCustomizeWindows,

Thursday, July 26th, 2018,
Vol.1(01),
p.1–58574 [IoT Ready Journal]


Source:The Customize Windows
ISSN: 0019-5847 ;
E-ISSN: 0019-5847 ;
Publisher:
jima.in

Cite this article as: Abhishek Ghosh, "How to Install Apache Accumulo on Ubuntu (Single Cloud Server Instance)," in The Customize Windows, July 26, 2018, December 14, 2019, https://thecustomizewindows.com/2018/07/how-to-install-apache-accumulo-on-ubuntu-single-cloud-server-instance/.

This website uses cookies. If you do not want to allow us to use cookies and/or non-personalized Ads, kindly clear browser cookies after closing this webpage.

Read Cookie Policy.


PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

web analysis

Copyright © 2019 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy