This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
如何安装
Longda edited this page Dec 25, 2013
·
28 revisions
- 从Downloads下载relase包
- 搭建Zookeeper集群
- 搭建JStorm集群
- ** 安装Python 2.6
- ** 安装Java
- ** 安装zeromq
- ** 安装Jzmq
- ** 配置$JSTORM_HOME/conf/storm.yaml
-
- 搭建web ui
- 启动JStorm集群
本处不细描叙Zookeeper安装步骤
- 安装步骤麻烦参考 ”zookeeper 安装步骤“
- zookeeper配置麻烦参考 “zookeeper 配置介绍”
- 如果当前系统python版本为2.6 或2.7,可以不用安装python
- 自己可以参考 python
- 也可以使用https://github.com/utahta/pythonbrew 来安装python ** curl -kL http://xrl.us/pythonbrewinstall | bash ** -s $HOME/.pythonbrew/etc/bashrc && source $HOME/.pythonbrew/etc/bashrc ** pythonbrew install 2.6.7 ** pythonbrew switch 2.6.7
注意,如果当前系统是64位系统,则需要下载java 64位,如果是32为系统,则下载32位java
tar zxf zeromq-2.1.7.tar.gz
cd zeromq-2.1.7
./configure
make
sudo make install
sudo ldconfig
如果没有root权限,或当前用户无sudo权限时,执行 “ ./configure --prefix=/home/xxxxx” 替换 “./configure”, 其中/home/xxxx 为安装目标目录
git clone git://github.com/nathanmarz/jzmq.git
cd jzmq
./autogen.sh
./configure
make
make install
如果没有root权限,或当前用户无sudo权限时,执行 “ ./configure --prefix=/home/xxxx --with-zeromq=/home/xxxx” 替换 “./configure”, 其中/home/xxxx 为安装目标目录
###安装JStorm 假设以jstorm-0.9.0.zip为例
unzip jstorm-0.9.0.zip
vi ~/.bashrc
export JSTORM_HOME=/XXXXX/XXXX
export PATH=$PATH:$JSTORM_HOME/bin