forked from dunwu/linux-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzookeeper-install.sh
More file actions
34 lines (26 loc) · 944 Bytes
/
zookeeper-install.sh
File metadata and controls
34 lines (26 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
cat << EOF
###################################################################################
# 安装 zookeeper 脚本
# @system: 适用于所有 linux 发行版本。
# @author: Zhang Peng
###################################################################################
EOF
if [[ $# -lt 1 ]] || [[ $# -lt 2 ]];then
echo "Usage: sh zookeeper-install.sh [version] [path]"
echo -e "Example: sh zookeeper-install.sh 3.4.12 /opt/zookeeper\n"
fi
version=3.4.12
if [[ -n $1 ]]; then
version=$1
fi
root=/opt/zookeeper
if [[ -n $2 ]]; then
root=$2
fi
echo "Current execution: install zookeeper ${version} to ${root}"
echo -e "\n>>>>>>>>> download zookeeper"
mkdir -p ${root}
wget -O ${root}/zookeeper-${version}.tar.gz http://mirrors.hust.edu.cn/apache/zookeeper/zookeeper-${version}/zookeeper-${version}.tar.gz
echo -e "\n>>>>>>>>> install zookeeper"
tar zxf ${root}/zookeeper-${version}.tar.gz -C ${root}