Created
March 16, 2013 08:08
-
-
Save lancejpollard/5175477 to your computer and use it in GitHub Desktop.
Install storm and kafka on mac
This file contains 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
brew update | |
# install xcode 4.6.1 | |
brew install storm | |
brew install leiningen | |
git clone https://github.com/nathanmarz/storm-starter.git | |
cd storm-starter | |
lein deps | |
lein compile | |
java -cp $(lein classpath) storm.starter.ExclamationTopology | |
curl -O http://mirror.cc.columbia.edu/pub/software/apache/incubator/kafka/kafka-0.7.2-incubating/kafka-0.7.2-incubating-src.tgz | |
tar xzf kafka-<VERSION>.tgz | |
cd kafka-<VERSION> | |
./sbt update | |
./sbt package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment