centos 7下安装配置zookeeper

本文涉及的产品
服务治理 MSE Sentinel/OpenSergo,Agent数量 不受限
云原生网关 MSE Higress,422元/月
注册配置 MSE Nacos/ZooKeeper,118元/月
简介:

一、安装好java

二、配置 zookeeper:

1 、创建 /usr/local/services/zookeeper 文件夹:
     mkdir -p /usr/local/services/zookeeper
 
2 、进入到 /usr/local/services/zookeeper 目录中:
     cd /usr/local/services/zookeeper
 
3 、下载 zookeeper- 3.4 . 9 .tar.gz:
     wget https: //mirrors.tuna.tsinghua.edu.cn/apache/zookeeper/zookeeper-3.4.9/zookeeper-3.4.9.tar.gz
 
4 、解压缩 zookeeper- 3.4 . 9 .tar.gz:
     tar -zxvf zookeeper- 3.4 . 9 .tar.gz
 
5 、进入到 /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /conf 目录中:
     cd zookeeper- 3.4 . 9 /conf/
 
6 、复制 zoo_sample.cfg 文件的并命名为为 zoo.cfg:
     cp zoo_sample.cfg zoo.cfg
 
7 、用 vim 打开 zoo.cfg 文件并修改其内容为如下:
     # The number of milliseconds of each tick
 
     # zookeeper 定义的基准时间间隔,单位:毫秒
     tickTime= 2000
 
     # The number of ticks that the initial
     # synchronization phase can take
     initLimit= 10
     # The number of ticks that can pass between
     # sending a request and getting an acknowledgement
     syncLimit= 5
     # the directory where the snapshot is stored.
     do  not use /tmp  for  storage, /tmp here is just
     # example sakes.
     # dataDir=/tmp/zookeeper
 
     # 数据文件夹
     dataDir=/usr/local/services/zookeeper/zookeeper- 3.4 . 9 /data
 
     # 日志文件夹
     dataLogDir=/usr/local/services/zookeeper/zookeeper- 3.4 . 9 /logs
 
     # the port at which the clients will connect
     # 客户端访问 zookeeper 的端口号
     clientPort= 2181
 
     # the maximum number of client connections.
     # increase  this  if  you need to handle more clients
     #maxClientCnxns= 60
     #
     # Be sure to read the maintenance section of the
     # administrator guide before turning on autopurge.
     #
     # http: //zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
     #
     # The number of snapshots to retain in dataDir
     #autopurge.snapRetainCount= 3
     # Purge task interval in hours
     # Set to  "0"  to disable auto purge feature
     #autopurge.purgeInterval= 1
 
8 、保存并关闭 zoo.cfg 文件:
     
9 、进入到 /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin 目录中:
     cd ../bin/
 
10 、用 vim 打开 /etc/ 目录下的配置文件 profile:
     vim /etc/profile
     并在其尾部追加如下内容:
 
     # idea - zookeeper- 3.4 . 9  config start -  2016 - 09 - 08
 
     export ZOOKEEPER_HOME=/usr/local/services/zookeeper/zookeeper- 3.4 . 9 /
     export PATH=$ZOOKEEPER_HOME/bin:$PATH
     export PATH
 
     # idea - zookeeper- 3.4 . 9  config start -  2016 - 09 - 08
 
11 、使 /etc/ 目录下的 profile 文件即可生效:
     source /etc/profile
 
12 、启动 zookeeper 服务:
     zkServer.sh start
     如打印如下信息则表明启动成功:
     ZooKeeper JMX enabled by  default
     Using config: /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin/../conf/zoo.cfg
     Starting zookeeper ... STARTED
 
13 、查询 zookeeper 状态:
     zkServer.sh status
 
14 、关闭 zookeeper 服务:
     zkServer.sh stop
     如打印如下信息则表明成功关闭:
     ZooKeeper JMX enabled by  default
     Using config: /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin/../conf/zoo.cfg
     Stopping zookeeper ... STOPPED
 
15 、重启 zookeeper 服务:
     zkServer.sh restart
     如打印如下信息则表明重启成功:
     ZooKeeper JMX enabled by  default
     Using config: /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin/../conf/zoo.cfg
     ZooKeeper JMX enabled by  default
     Using config: /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin/../conf/zoo.cfg
     Stopping zookeeper ... STOPPED
     ZooKeeper JMX enabled by  default
     Using config: /usr/local/services/zookeeper/zookeeper- 3.4 . 9 /bin/../conf/zoo.cfg

    Starting zookeeper ... STARTED



如果出现 这类错误

[root@localhost ~]# /usr/zookeeper/bin/zkServer.sh stop
ZooKeeper JMX enabled by default
Using config: /usr/zookeeper/bin/../conf/zoo.cfg
Stopping zookeeper ... /usr/zookeeper/bin/zkServer.sh: 第 182 行:kill: (2453) - 没有那个进程 

解决:安装配置好java之后,需要赋予权限:

 chmod +x /usr/java/jdk1.8/bin/java                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    本文转自yunlielai51CTO博客,原文链接:http://blog.51cto.com/4925054/1920382,如需转载请自行联系原作者

相关实践学习
基于MSE实现微服务的全链路灰度
通过本场景的实验操作,您将了解并实现在线业务的微服务全链路灰度能力。
相关文章
|
25天前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
168 1
|
3月前
|
消息中间件 Linux API
centos7 安装rabbitmq自定义版本及配置
centos7 安装rabbitmq自定义版本及配置
|
1天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
10 2
|
22天前
|
消息中间件 监控 Ubuntu
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper
55 3
大数据-54 Kafka 安装配置 环境变量配置 启动服务 Ubuntu配置 ZooKeeper
|
5天前
|
监控 安全 Linux
CentOS7下安装配置ntp服务的方法教程
通过以上步骤,您不仅能在CentOS 7系统中成功部署NTP服务,还能确保其配置合理、运行稳定,为系统时间的精确性提供保障。欲了解更多高级配置或遇到特定问题,提供了丰富的服务器管理和优化资源,可作为进一步学习和求助的平台。
10 1
|
15天前
|
Java jenkins 持续交付
Centos7下docker的jenkins下载并配置jdk与maven
通过上述步骤,您将成功在CentOS 7上的Docker容器中部署了Jenkins,并配置好了JDK与Maven,为持续集成和自动化构建打下了坚实基础。
53 1
|
17天前
|
存储 监控 Linux
在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践
本文详细介绍了在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践,包括使用 `fdisk` 创建分区、`mkfs` 格式化分区、创建挂载点、编辑 `/etc/fstab` 实现永久挂载等步骤,旨在有效管理服务器磁盘空间,提高系统稳定性和可维护性。
21 1
|
25天前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
45 1
|
3月前
|
弹性计算 关系型数据库 MySQL
centos7 mysql安装及配置
本文详细介绍了在阿里云服务器ECS上通过yum源安装MySQL 8.0.12的过程,包括更新yum源、下载并安装MySQL源、解决安装过程中可能遇到的问题等步骤。此外,还介绍了如何启动MySQL服务、设置开机自启、配置登录密码、添加远程登录用户以及处理远程连接异常等问题。适合初学者参考,帮助快速搭建MySQL环境。
311 8
centos7 mysql安装及配置
|
18天前
|
安全 Linux 数据库连接
CentOS 7环境下DM8数据库的安装与配置
【10月更文挑战第16天】本文介绍了在 CentOS 7 环境下安装与配置达梦数据库(DM8)的详细步骤,包括安装前准备、创建安装用户、上传安装文件、解压并运行安装程序、初始化数据库实例、配置环境变量、启动数据库服务、配置数据库连接和参数、备份与恢复、以及安装后的安全设置、性能优化和定期维护等内容。通过这些步骤,可以顺利完成 DM8 的安装与配置。
105 0