apache zookeeper的安裝

來源:互聯網
上載者:User

標籤:systems   val   tree   htm   lines   shared   bashrc   ica   like   

original article:http://zookeeper.praveendeshmane.co.in/zookeeper/zookeeper-3-4-6-single-server-setup-on-ubuntu-14-04.jsp

---------------------------------------------------------

Apache ZooKeeper is a software project of the Apache Software Foundation. It is essentially a distributed hierarchical key-value store, which is used to provide a distributed configuration service, synchronization service, and naming registry for large distributed systems. ZooKeeper was a sub-project of Hadoop but is now a top-level project in its own right.

ZooKeeper‘s architecture supports high availability through redundant services. The clients can thus ask another ZooKeeper leader if the first fails to answer. ZooKeeper nodes store their data in a hierarchical name space, much like a file system or a tree data structure. Clients can read from and write to the nodes and in this way have a shared configuration service. Updates are totally ordered.

Pre Requirements

1) A machine with Ubuntu 14.04 LTS operating system

2) Apache Hadoop 2.6.4 pre installed (How to install Hadoop on Ubuntu 14.04)

3) Apache ZooKeeper 3.4.6 software (Download Here)

ZooKeeper 3.4.6 Single Server setup on Ubuntu

Installation Steps

Step 1 - Update. Open a terminal (CTRL + ALT + T) and type the following sudo command. It is advisable to run this before installing any package, and necessary to run it to install the latest updates, even if you have not added or removed any Software Sources.

 

$ sudo apt-get update

Step 2 - Installing Java 7.

 

$ sudo apt-get install openjdk-7-jdk

Step 3 - Edit $HOME/.bashrc file by adding the java path.

 

$ sudo gedit $HOME/.bashrc

$HOME/.bashrc file. Add the following lines

 

export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64

Step 4 - Reload your changed $HOME/.bashrc settings

 

$ source $HOME/.bashrc

Step 5 - Creating zookeeper directory.

 

$ sudo mkdir /usr/local/zookeeper

Step 6 - Change the ownership and permissions of the directory /usr/local/zookeeper. Here ‘hduser‘ is an Ubuntu username.

 

$ sudo chown -R hduser /usr/local/zookeeper
$ sudo chmod -R 755 /usr/local/zookeeper

Step 7 - Creating /zookeeper/data directory.

 

$ sudo mkdir /usr/local/zookeeper/data

Step 8 - Change the ownership and permissions of the directory /usr/local/zookeeper/data. Here ‘hduser‘ is an Ubuntu username.

 

$ sudo chown -R hduser /usr/local/zookeeper/data
$ sudo chmod -R 755 /usr/local/zookeeper/data

Step 9 - Creating /zookeeper/log directory.

 

$ sudo mkdir /usr/local/zookeeper/log

Step 10 - Change the ownership and permissions of the directory /usr/local/zookeeper/log. Here ‘hduser‘ is an Ubuntu username.

 

$ sudo chown -R hduser /usr/local/zookeeper/log
$ sudo chmod -R 755 /usr/local/zookeeper/log

Step 11 - Change the directory to /home/hduser/Desktop , In my case the downloaded zookeeper-3.4.6.tar.gz file is in /home/hduser/Desktop folder. For you it might be in /downloads folder check it.

 

$ cd /home/hduser/Desktop/

Step 12 - Untar the zookeeper-3.4.6.tar.gz file.

 

$ tar xzf zookeeper-3.4.6.tar.gz

Step 13 - Move the contents of zookeeper-3.4.6 folder to /usr/local/zookeeper

 

$ mv zookeeper-3.4.6/* /usr/local/zookeeper

Step 14 - Change the directory to /usr/local/zookeeper/conf

 

$ cd /usr/local/zookeeper/conf

Step 15 - Edit zoo.cfg file. If this file doesn‘t exists it will create one for you and it ll open for you to edit.

 

$ gedit zoo.cfg

Step 16 - Add following lines to zoo.cfg file. Save and close.

 

tickTime=2000dataDir=/usr/local/zookeeper/datadataLogDir=/usr/local/zookeeper/logclientPort=2181initLimit=5syncLimit=2

Step 17 - Change the directory to /usr/local/zookeeper/bin

 

$ cd /usr/local/zookeeper/bin

Step 18 - Start zookeeper server

 

$ ./zkServer.sh start

Step 19 - Start client

 

$ ./zkCli.sh -server 127.0.0.1:2181

Step 20 - Stop zookeeper server

 

$ ./zkServer.sh stop

Please share this blog post and follow me for latest updates on

apache zookeeper的安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.