linux 安裝單機版zookeeper

2021-07-27 13:17:50 字數 1240 閱讀 9523

2、安裝zookeeper

2)進入zookeeper-3.4.9目錄下的conf目錄,執行copy命令cp zoo_sample.cfg zoo.cfg

3 )編輯zoo.cfg,執行vi zoo.cfg,修改為

# 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=/software/zookeeper-3.4.9/data

datalogdir=/software/zookeeper-3.4.9/logs

# the port at which the clients will connect

clientport=2181

server.1=localhost:2888:3888

在/software/zookeeper-3.4.9/ 建立data和logs檔案

4)設定環境變數

執行linux命令 vi /etc/profile  輸入「i」 進入insert模式, 在配置檔案追加 :

zookeeper=/software/zookeeper-3.4.9

path=$path:$zookeeper/bin

輸入「esc」鍵,退出insert模式,:wq 儲存並退出

輸入命令source /etc/profile 編譯該檔案

5)啟動服務

進入zookeeper的bin目錄,./zkserver.sh start 啟動,檢視是否啟動成功./zkserver.sh status 如果啟動失敗,可能是linux防火牆沒有關閉,執行

chkconfig iptables off 關閉即可 

redis安裝 單機版

因為redis使用c語言開發的,如果要執行在linux上,需要gcc c 的環境。那麼我們就要先看一下是否安裝了gcc c 如果沒有的話,需要在虛擬機上安裝gcc c 環境 友情提示,除了指令碼語言,linux上執行啥東西都需要裝環境 首先需要檢視linux上是否擁有該執行環境,輸入命令為 rpm ...

安裝單機版redis

2.執行redis cd redis 3.2.8 服務端啟動 src redis server redis.conf 客戶端連線 src redis cli h m01 p 6379 服務端停止 src redis cli h m01 p 6379 shutdown 或者為了方便可以單獨把redis...

Redis單機版安裝

tar zxvf redis 4.0.1.tar.gz make make install 檔案說明 進入redis的安裝目錄下,在安裝目錄下執行 root bogon redis 4.0.1 src redis server 看到如下資訊證明已經啟動成功,該資訊詳細的列出了所使用的版本號,以及監聽...