• 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
You are here: Home » 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.

Advertisement

---

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 :

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 accumulo on single server , how to install accumulo on ubuntu aws , install accumulo on aws] , setup accumulo 1 9 standalone

This Article Has Been Shared 363 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, 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

Get new posts by email:

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 (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • What is an Automatic Ethanol Fireplace February 8, 2023
  • Disadvantages of Cloud-Native Computing February 7, 2023
  • Projector Screen Basics February 6, 2023
  • What is Configuration Management February 5, 2023
  • What is ChatGPT? February 3, 2023

About This Article

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

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

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

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

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

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT