Skip to content

Instantly share code, notes, and snippets.

@edwardw
Last active June 8, 2016 15:52
Show Gist options
  • Select an option

  • Save edwardw/1518116 to your computer and use it in GitHub Desktop.

Select an option

Save edwardw/1518116 to your computer and use it in GitHub Desktop.

Revisions

  1. edwardw revised this gist Nov 13, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@ $ make
    $ sudo make install
    ```

    Install storm ans launch nimbus and supervisor:
    Install storm and launch nimbus and supervisor:

    ``` bash
    $ wget -c https://github.com/downloads/nathanmarz/storm/storm-0.6.1-rc.zip
  2. edwardw revised this gist Dec 25, 2011. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.md
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@ $ make
    $ sudo make install
    ```

    Install storm nimbus and worker:
    Install storm ans launch nimbus and supervisor:

    ``` bash
    $ wget -c https://github.com/downloads/nathanmarz/storm/storm-0.6.1-rc.zip
  3. edwardw revised this gist Dec 24, 2011. No changes.
  4. edwardw revised this gist Dec 24, 2011. No changes.
  5. edwardw created this gist Dec 24, 2011.
    32 changes: 32 additions & 0 deletions gistfile1.md
    Original 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
    ```