zookeeper配置
三台服务器、三个节点配置(三台服务器均修改配置文件):
# 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=/app/soft/zookeeper-3.4.6/data
dataLogDir=/app/soft/zookeeper-3.4.6/logs
# the port at which the clients will connect
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
server.1=10.124.210.12:2888:3888
server.2=10.124.210.13:2888:3888
server.3=10.124.210.14:2888:3888
配置用户级别的环境变量
vim /home/jfshop/.bash_profile
添加环境变量(具体情况再做修改)
export ZOOKEEPER_HOME=/app/soft/zookeeper-3.4.6
export PATH=$PATH:$ZOOKEEPER_HOME/bin:$ZOOKEEPER_HOME/conf
注意:
除了修改zoo.cfg配置文件外,zookeeper集群模式下还要配置一个myid文件,这个文件需要放在dataDir目录下。
这个文件里面有一个数据就是A的值(该A就是zoo.cfg文件中server.A=B:C:D中的A),在zoo.cfg文件中配置的dataDir路径中创建myid文件。
cd /app/soft/zookeeper-3.4.6/data
vim myid
myid的内容与server.1后面的数字保持一致(所有节点都需要添加)
server.A=B:C:D:其中 A 是一个数字,表示这个是第几号服务器;B 是这个服务器的 ip 地址;C 表示的是这个服务器与集群中的 Leader 服务器交换信息的端口;D 表示的是万一集群中的 Leader 服务器挂了,需要一个端口来重新进行选举,选出一个新的 Leader,而这个端口就是用来执行选举时服务器相互通信的端口。如果是伪集群的配置方式,由于 B 都是一样,所以不同的 Zookeeper 实例通信端口号不能一样,所以要给它们分配不同的端口号。
刷新权限
source /home/jfshop/.bash_profile
分别在3台机器上/opt/zookeeper-3.4.5/bin目录下启动;
zkServer.sh start 启动。
zkServer.sh restart (重启)
zkServer.sh status (查看状态)
zkServer.sh stop (关闭)
zkServer.sh start-foreground (以打印日志方式启动)
centos7下查看防火墙状态的命令:
firewall-cmd --state
sudo systemctl stop firewalld.service (临时关闭防火墙)
sudo systemctl disable firewalld.service (禁止开机启动,永久关闭防火墙)