Databases Reference
In-Depth Information
APPENDIX B
Installing Storm Cluster
If you want to create a Storm cluster, there are two ways to do so:
• Use storm-deploy to create a cluster on Amazon EC2, as you saw in Chapter 6 .
• Install Storm manually (more on this in this Appendix).
To install Storm manually, install:
• Zookeeper cluster (see how in the Administration Guide )
• Java 6.0
• Python 2.6.6
• Unzip command
All of the following steps, the Java, Python and unzip commands will
be required in Nimbus and the supervisor process.
When you've met the requirements, install the native libraries.
To install ZeroMQ, run:
wget http://download.zeromq.org/historic/zeromq-2.1.7.tar.gz
tar -xzf zeromq-2.1.7.tar.gz
cd zeromq-2.1.7
./configure
make
sudo make install
To install JZMQ, run:
git clone https://github.com/nathanmarz/jzmq.git
cd jzmq
./autogen.sh
./configure
make
sudo make install
 
Search WWH ::




Custom Search