Last active
June 8, 2016 15:52
-
-
Save edwardw/1518116 to your computer and use it in GitHub Desktop.
Revisions
-
edwardw revised this gist
Nov 13, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ $ make $ sudo make install ``` Install storm and launch nimbus and supervisor: ``` bash $ wget -c https://github.com/downloads/nathanmarz/storm/storm-0.6.1-rc.zip -
edwardw revised this gist
Dec 25, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ $ make $ sudo make install ``` Install storm ans launch nimbus and supervisor: ``` bash $ wget -c https://github.com/downloads/nathanmarz/storm/storm-0.6.1-rc.zip -
edwardw revised this gist
Dec 24, 2011 . No changes.There are no files selected for viewing
-
edwardw revised this gist
Dec 24, 2011 . No changes.There are no files selected for viewing
-
edwardw created this gist
Dec 24, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ First, install storm dependencies. [How do I compile jzmq for ZeroMQ on OSX?](http://stackoverflow.com/questions/3522248/how-do-i-compile-jzmq-for-zeromq-on-osx) helps. ``` bash $ brew install zeromq $ git clone https://github.com/nathanmarz/jzmq.git $ cd jzmq $ sudo vim /usr/share/aclocal/dirlist (sudo cat > /usr/share/aclocal/dirlist permission denied?) /usr/local/share/aclocal /usr/local/Cellar/pkg-config/0.25/share/aclocal/ $ export JAVA_HOME=/Library/Java/Home $ ./autogen.sh $ ./configure $ make $ sudo make install ``` Install storm nimbus and worker: ``` bash $ wget -c https://github.com/downloads/nathanmarz/storm/storm-0.6.1-rc.zip $ unzip storm-0.6.1-rc.zip $ cd storm-0.6.1-rc $ vim conf/storm.yaml storm.zookeeper.servers: - "192.168.1.6" storm.local.dir: "/Users/edward/ws/sandbox/storm/storm-0.6.1-rc/var" nimbus.host: "192.168.1.2" $ mkdir var $ bin/storm nimbus $ bin/storm supervisor $ bin/storm ui ```