zookeeper的开启启动

[[email protected] zookeeper]# cd /etc/init.d
[[email protected] init.d]# cat zookeeper 
#!/bin/bash  
#chkconfig: 2345 10 90  
#description: service zookeeper  
export JAVA_HOME=/opt/jdk
export   ZOO_LOG_DIR=/home/bb/zookeeper/log  ##zookeeper的配置文件的dataLogDir
date >>/tmp/zk.log
ZOOKEEPER_HOME=/home/cloud/zookeeper
su - cloud ${ZOOKEEPER_HOME}/bin/zkServer.sh      "$1"  
echo $1 >>/tmp/zk.log
[[email protected]=bb init.d]#

# The number of milliseconds of each tick
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=/home/bb/zookeeper/
dataLogDir=/home/bb/zookeeper/log/
# the port at which the clients will connect
clientPort=2182
# 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
server.1=172.16.4.26:2888:38888
server.2=172.16.4.27:2888:38888
server.3=172.16.4.28:2888:38888

cd /etc/init.d/

chmod +x zookeeper

chkconfig  -add zookeeper

chkconfig  zookeeper on

原文地址:http://blog.51cto.com/wsxxsl/2105274

时间: 2025-01-09 08:34:52

zookeeper的开启启动的相关文章

ubuntu开启启动过程&&开启自动启动 &&chkconfig

ubuntu开启启动过程&&开启自动启动 &&chkconfig 摘要:很多情况下,我们需要让某些服务开机自动运行:apache.mysql等.或者,在其他时候,我们需要开机即设置某些环境变量的值,修改runlevel等:这个时候,我们需要弄明白系统的开机启动过程. 1.ubuntu开启启动过程: 一般的linux系统,开机启动过程如下: boot>> loader >>kernel >>init >> inittab >

【分布式】Zookeeper服务端启动

一.前言 前面已经了解了Zookeeper会话相关知识点,接着来学习Zookeeper服务端相关细节. 二.服务端 服务端整体架构如下 Zookeeper服务器的启动,大致可以分为以下五个步骤 1. 配置文件解析. 2. 初始化数据管理器. 3. 初始化网络I/O管理器. 4. 数据恢复. 5. 对外服务. 2.1 单机版服务器启动 单机版服务器的启动其流程图如下 上图的过程可以分为预启动和初始化过程. 1. 预启动 1. 统一由QuorumPeerMain作为启动类.无论单机或集群,在zkSe

centos 6.5+ 开机自动联网配置 && 开启启动服务

centos 开机自动联网 a.  默认centos不能自动联网 $ ifconfig  //插卡ip的设备名 eth0 # vim /etc/sysconfig/network-scripts/ifcfg-eth0      修改  ONBOOT=yes   //  default = no b.  通过命令行打开图形界面设置 #ntsysv c.   开机启动服务 #chkconfig  //查看系统服务 #chkconfig  sshd on/off   //设置开机启动/关闭 ssd 服

zookeeper集群启动报错:Cannot open channel to * at election address /ip:3888

zookeeper集群启动报错:Cannot open channel to * at election address /ip:3888 2018年04月06日 20:52:55 中单大魔王 阅读数:729 标签: zookeeper 下面几点需要注意的: 1.确认在每个$zookeeper_home/data/myid中有对应数字 2.是否关闭防火墙:systemctl stop firewalld,systemctl disable firewalld 3.zoo.cfg中的server需

Zookeeper【客户端启动】

今天我们来说说 Zookeeper 客户端启动,整个文章分三个部分:第一部分是 Zookeeper 原生 API 客户端,第二部分是开源客户端 ZkClient,第三部分是开源客户端 Curator. [Zookeeper API 客户端]

zookeeper不能正常启动

一.错误信息:zookeeper进程存在,但状态为not running,如下: [[email protected] bin]# ps -ef|grep 'zookeeper' root      2338     1  0 12:31 pts/6    00:00:35 /opt/jdk1.7.0_80/bin/java -Dzookeeper.log.dir=/usr/local/zookeeper-3.5.1-alpha/bin/../logs -Dzookeeper.log.file=

Zookeeper集群启动失败

错误原因: myid文件创建位置不对,应该为data目录下 Zookeeper重复启动,2次start,没有stop. 解决方案:   在data下创建myid,使用cat myid查看创建是否正确 删除启动在data目录下产生的zookeeper_server.pid文件 注意:Zookeeper一定要用命令关闭! JMX enabled by default Using config: /hadoop/zookeeper/bin/../conf/zoo.cfg Error contactin

Zookeeper群起脚本启动失败及查看状态出现:Error contacting service. It is probably not running

1.问题: 群起脚本启动后查看jps没有出现:QuorumPeerMain Zookeeper正常启动但是群起脚本查状态出现:Error contacting service. It is probably not running错误 ZooKeeper JMX enabled by default Using config: /opt/module/zookeeper-3.4.10/bin/../conf/zoo.cfg Error contacting service. It is prob

centos7开启启动脚本

########################### #chkconfig: 2345 10 90 #description: Start and Stop redis PATH=/usr/local/bin:/sbin:/usr/bin:/bin REDISPORT=6379 EXEC=/usr/local/bin/redis-server REDIS_CLI=/usr/local/bin/redis-cli PIDFILE=/var/run/redis.pid CONF="/etc/red