Last active
September 11, 2018 08:28
-
-
Save tmusabbir/7019936 to your computer and use it in GitHub Desktop.
Setup a Storm cluster on Amazon EC2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setup a Storm cluster on Amazon EC2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@ip-10-0-0-194 jzmq]# git clone https://github.com/nathanmarz/jzmq.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@ip-10-0-0-194 tool]# cd jzmq | |
[root@ip-10-0-0-194 jzmq]# ./autogen.sh | |
[root@ip-10-0-0-194 jzmq]# ./configure | |
[root@ip-10-0-0-194 jzmq]# make | |
[root@ip-10-0-0-194 jzmq]# make install ("sudo make install" if not root) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@ip-10-0-0-194 tool]# mv zeromq-2.1.7.tar.gz zeromq | |
[root@ip-10-0-0-194 tool]# cd zeromq | |
[root@ip-10-0-0-194 zeromq]# ./configure | |
[root@ip-10-0-0-194 zeromq]# make | |
[root@ip-10-0-0-194 zeromq]# make install ("sudo make install" if not root) | |
[root@ip-10-0-0-194 zeromq]# ldconfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
storm.zookeeper.servers: | |
- "10.0.0.194" | |
- "10.0.0.195" | |
- "10.0.0.196" | |
nimbus.host: "10.0.0.182" | |
storm.local.dir: "/var/storm" | |
supervisor.slots.ports: | |
- 6700 | |
- 6701 | |
- 6702 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment