Zookeeper的安裝
Zookeeper的安裝
1.下載地址
官網:https://www.apache.org/dyn/closer.cgi/zookeeper/
github:https://github.com/apache/zookeeper
2.zookeeper安裝的三種模式
單機模式
2.1.1上傳zookeeper到linux中
2.1.2對zookeeper進行解壓
tar -zxvf zookeeper-3.4.6
2.1.3進入zookeeper的conf目錄下,拷貝zoo_sample.cfg一份為zoo.cfg
cp zoo_sample.cfg zoo.cfg
2.1.4在zookeeper目錄下建立data和log資料夾
[root@root zookeeper-3.4.6]# mkdir data
[root@root zookeeper-3.4.6]# mkdir log
2.1.5修改conf/zoo.cfg檔案
[root@root zookeeper-3.4.6]# vi conf/zoo.cfg
2.1.6配置zookeeper路徑
[root@root zookeeper-3.4.6]# vi /etc/profile
配置內容
export ZOOKEEPER_HOME=/usr/local/application/hadoop/zookeeper-3.4.6
export PATH=/$PATH:/usr/local/application/hadoop/zookeeper-3.4.6/bin
2.1.7進入zookeeper的bin目錄,啟動zookeeper
[root@root bin]# ./zkServer.sh start
檢視zookeeper的狀態
[root@root bin]# ./zkServer.sh status
注意:zookeeper使用2181埠號,需要釋放zookeeper的2181埠或者關閉防火牆
釋放2181埠
[root@root sysconfig]# iptables -I INPUT -p tcp --dport 2181 -m state --state NEW -j ACCEPT
關閉防火牆
[root@root bin]# service iptables stop
重啟防火牆
[root@root bin]# systemctl restart firewalld
偽叢集模式
待續…
叢集模式
待續…
相關文章
- 【zookeeper安裝】
- Zookeeper安裝
- Zookeeper 安裝配置
- docker安裝zookeeperDocker
- Ubuntu 安裝 ZooKeeperUbuntu
- Mac 安裝 zookeeperMac
- ZooKeeper 安裝部署
- Zookeeper安裝部署
- codis安裝 (java 安裝 + zookeeper 安裝 + go 安裝 + codis 安裝JavaGo
- Zookeeper單機安裝
- kafka和zookeeper安裝Kafka
- ansible安裝zookeeper
- ZooKeeper安裝筆記筆記
- centos下安裝ZooKeeperCentOS
- Zookeeper 安裝和配置
- Ubuntu_安裝ZookeeperUbuntu
- 3-ZooKeeper安裝
- Dubbo-zookeeper的部署和安裝
- hbase和zookeeper的安裝和部署
- 學習五:zooKeeper的安裝配置
- zookeeper安裝部署步驟
- 初識zookeeper和安裝
- ZooKeeper三種安裝模式模式
- zookeeper下載安裝使用
- Docker教程之十一安裝 ZookeeperDocker
- 安裝Zookeeper和Kafka叢集Kafka
- ZooKeeper分散式專題(一) -- zookeeper安裝以及介紹分散式
- Zookeeper-3.4.10 叢集的安裝配置
- 【Linux】Centos7.6 安裝ZookeeperLinuxCentOS
- Zookeeper(1)-安裝與基礎使用
- CentOS6.5 安裝Zookeeper叢集CentOS
- zookeeper安裝和使用 windows環境Windows
- [Zookeeper-01]什麼是zookeeper?& Linux / Windows Zookeeper安裝和部署(單點)LinuxWindows
- Zookeeper 在Linux系統上的安裝,並且啟動zookeeper服務Linux
- 【Zookeeper】zookeeper叢集安裝
- CentOS上zookeeper叢集模式安裝配置CentOS模式
- centOS安裝zookeeper3.4.6(分散式模式)CentOS分散式模式
- linux安裝zookeeper中各種坑Linux