• 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 Kudu on Ubuntu Server

By Abhishek Ghosh July 18, 2018 8:02 am Updated on July 18, 2018

How to Install Apache Kudu on Ubuntu Server

Advertisement

Apache Kudu is a column oriented data store of the Apache Hadoop system which is compatible with most of the data processing frameworks use in Hadoop environment. Apache Kudu provides Hadoop’s storage layer to enable fast analytics on fast data. This project originally was of Cloudera. Kudu Has Official Kudu Quickstart VM and Cloudera Users Can Avoid This Guide. Kudu is now easier to install and manage with Cloudera Manager. If you use Cloudera Manager , please refer to Cloudera ‘s Kudu documentation . Here Are the Steps on How to Install Apache Kudu on Ubuntu Server. We are publishing guide for internal reference of our website.

How to Install Apache Kudu on Ubuntu Server

 

Steps to Install Apache Kudu on Ubuntu Server

 

We will install from repository. Building Kudu is complex, time taking process and factually meaningless unless you need to build with major modification. One or more hosts run Kudu masters. It is recommended to use one master (no fault tolerance), three masters (can tolerate one fault) or five masters (two faults can be tolerated). One or more hosts running Kudu tablet server — when using a copy, you need at least three tablet servers. the kudu-master and kudu-tserver packages only needed on hosts where there is a master or tserver respectively. It practically not needed while using Cloudera Manager. Each of them provides configuration files and init.d script to manage the corresponding Kudu process.

When you are using Ubuntu or Debian repositories, create a file named cloudera.list at /etc/apt/sources.list.d/ :

Advertisement

---

Vim
1
2
3
4
5
cd /etc/apt/sources.list.d/
wget http://archive.cloudera.com/kudu/ubuntu/xenial/amd64/kudu/cloudera.list
ls -al
apt update
apt ugrade

JDK 7 or 8 is required to build Kudu, but a JRE not required at runtime except for running tests. Install from repository :

Vim
1
2
3
4
5
sudo apt-get install kudu                     # Base Kudu files
sudo apt-get install kudu-master              # Service scripts for managing kudu-master
sudo apt-get install kudu-tserver             # Service scripts for managing kudu-tserver
sudo apt-get install libkuduclient0           # Kudu C++ client shared library
sudo apt-get install libkuduclient-dev        # Kudu C++ client SDK

We can enable the kudu service on startup :

Vim
1
2
sudo update-rc.d kudu-master defaults      
sudo update-rc.d kudu-tserver defaults

Some methods can verify that the service is running — checking the output of the ps command on the server to verify that one or both of the kudu-master or kudu-tserver processes are running and/or opening the Master or Tablet Server web UI.

Before you start the Kudu service, you need to perform additional configuration steps on each host.
These packages create a kudu-conf entry in the operating system’s standby database, and they ship the built-in conf.dist. To adjust the configuration, you can edit the file in /etc/kudu/conf/ directly, or use the operating system utility to create a new option, make sure it is the link pointed to by /etc/kudu/conf/, create a custom configuration there. Some parts of the configuration file configuration are also configured in the /etc/default/kudu-master and /etc/default/kudu-tserver files. If you create a custom profile, you should include or copy these configuration options.

Start the Kudu service with the following command:

Vim
1
2
sudo service kudu-master start
sudo service kudu-tserver start

To stop the Kudu service, use the following command:

Vim
1
2
sudo service kudu-master stop
sudo service kudu-tserver stop

We can check process and port it listening to for verifying whether everything is fine :

Vim
1
2
sudo ps -ef | grep kudu
netstat -ntulp | grep 8051

We can access the Master or Tablet Server’s web UI by opening http://<_host_name_>:8051/ for master and http://<_host_name_>:8050/ for tablet servers.

If Kudu is not running, please check the log file in ‘/var/log/kudu’ . If there is a file ending with ‘.FATAL’ , it means that Kudu cannot be started. Problem can be with your operating system or with ntp.

Tagged With apache kudu in virtualbox , apache kudu installation in ubuntu , can we install kudu in one VM , custom kudu server intranet , installing apache kudu , installing kudud , kudu start server , ubuntu kudu repository

This Article Has Been Shared 238 Times!

Facebook Twitter 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 Kudu on Ubuntu Server

  • What is Fog Computing, Fog Networking, Fogging

    Fog computing is a System-Wide Architecture Which is Useful For Deploying Seamlessly Resources and Services For Computing, Data Storage.

  • Theoretical Foundations of Big Data : Part 3

    Theoretical Foundations of Big Data is third and final part of our series of articles. We have talked about Data Mining, OLAP & softwares.

  • How To Install and Run iPython/Jupyter Notebook on IBM Bluemix

    This is Old Way of Using Tools Around Big Data and Data Science. Here are Steps on How To Install, Run iPython/Jupyter Notebook on Bluemix.

  • Integrating Apache Nutch With Apache Solr on Ubuntu Server

    Integrating Apache Nutch With Apache Solr Will Offer a Web UI, Options to Visually Search and Use Extended Functions of Apache Nutch.

  • How To Install SBT and Scala on Ubuntu Server

    Here Are The Steps on How To Install SBT and Scala on Ubuntu Server. sbt is a build tool for Scala and Java projects Like Apache Maven, Apache Ant.

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 (21K Followers)
  • Twitter (5.3k 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

  • Best Powerpoint Templates for Communicating IoT Concepts April 17, 2021
  • How to Build a DIY Water Level Indicator? April 16, 2021
  • How Startups Can Convince the Investors April 14, 2021
  • What to Know About the Cloud Storage Services for Smartphones April 13, 2021
  • WonderFox HD Video Converter Factory Pro Review April 10, 2021

 

About This Article

Cite this article as: Abhishek Ghosh, "How to Install Apache Kudu on Ubuntu Server," in The Customize Windows, July 18, 2018, April 19, 2021, https://thecustomizewindows.com/2018/07/how-to-install-apache-kudu-on-ubuntu-server/.

Source:The Customize Windows, JiMA.in

 

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.

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

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