Apache ZooKeeper:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
第39行: 第39行:
</syntaxhighlight>
</syntaxhighlight>


 然後 連結
 然後 設定開機啟動


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
sudo systemctl daemon-reload
sudo systemctl enable zookeeper
sudo systemctl enable zookeeper
</syntaxhighlight>
</syntaxhighlight>

2019年3月1日 (五) 13:50的版本

ZooKeeper是一套分散式的Key-Value系统。

安装

Ubuntu 18.04所内附的ZooKeeper已经够新,可以直接安装使用:

sudo apt install -y zookeeper zookeeperd

其中zookeeperd是开机时的script。

设定

每台机器的/etc/zookeeper/conf_production/myid都需要不同,可以从1255

1

这边要列出所有机器/etc/zookeeper/conf_production/zoo.cfg

tickTime=2000
dataDir=/var/lib/zookeeper/
clientPort=2181
initLimit=5
syncLimit=2
server.1=172.31.x:2888:3888
server.2=172.31.x:2888:3888
server.3=172.31.x:2888:3888

修改设定档的目录:

sudo update-alternatives --install /etc/zookeeper/conf zookeeper-conf /etc/zookeeper/conf_production 1
sudo update-alternatives --set zookeeper-conf /etc/zookeeper/conf_production

然后设定开机启动:

sudo systemctl enable zookeeper

可以重开机,或是直接跑起来:

sudo service zookeeper start

测试

echo stat | nc 127.0.0.1 2181

外部连结