Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Installation and configuration method of zookeeper Cluster

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "the installation and configuration method of zookeeper cluster". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Zookeeper introduction

ZooKeeper is a distributed, open source distributed application coordination service, an open source implementation of Google's Chubby, and an important component of Hadoop and Hbase. It is a software that provides consistency services for distributed applications, including configuration maintenance, name service, distributed synchronization, group service and so on. This is an introduction on Baidu encyclopedia. If you want to know more about zookeeper, you can take a look at the official documents and some related blogs. This article only describes how to install zookeeper.

Installation and configuration of zookeeper

Set up that we have three servers: hostname1,hostname2,hostname3.

First, you need to make sure that each machine can recognize these three hostnames. It can be configured in the / etc/hosts file.

172.18.11.1 hostname1172.18.11.2 hostname2172.18.11.3 hostname3

You also need to make sure that the java environment is equipped on each machine.

Download zookeeper and extract it

Download address: http://www.webhostingreviewjam.com/mirror/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz

Extract the zookeeper to the specified folder, and here to the / opt folder

Tar zxvf zookeeper-3.4.6.tar.gz-C / opt/ln-s / opt/zookeeper-3.4.6/ / opt/zookeeper configuration zookeeper

Copy / opt/zookeeper/conf/zoo_sample.cfg to / opt/zookeeper/conf/zoo.cfg

Cp / opt/zookeeper/conf/zoo_sample.cfg / opt/zookeeper/conf/zoo.cfg

Configure the zoo.cfg file

Vim / opt/zookeeper/conf/zoo.cfg

Change dataDir=/tmp/zookeeper to the folder you specified, here to dataDir=/var/lib/zookeeper.

Mkdir / var/lib/zookeeper

Add the following to the zoo.cfg

Server.1=hostname1:2888:3888server.2=hostname2:2888:3888server.3=hostname3:2888:3888

Execute on the hostname1 machine

Echo 1 > / var/lib/zookeeper/myid

Execute on the hostname2 machine

Echo 2 > / var/lib/zookeeper/myid

Execute on the hostname3 machine

Echo 3 > / var/lib/zookeeper/myid start zookeeper

Start the zookeeper service on three machines

/ opt/zookeeper/bin/zkServer.sh start

This is the end of the content of "installation and configuration of zookeeper Cluster". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report