Created
June 30, 2014 09:03
-
-
Save lsmith77/93a9c4431ad1bbe9f06a to your computer and use it in GitHub Desktop.
Compiling Oak from source and installing MongoDB via homebrew
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
brew update | |
brew outdated | |
brew upgrade | |
brew install maven | |
brew install mongodb | |
mongod --config /usr/local/etc/mongod.conf | |
wget http://www.eu.apache.org/dist/jackrabbit/oak/1.0.1/jackrabbit-oak-1.0.1-src.zip | |
unzip jackrabbit-oak-1.0.1-src.zip | |
cd jackrabbit-oak-1.0.1 | |
mvn -DskipTests install | |
java -jar oak-run/target/oak-run-1.0.1.jar server http://localhost:8080/ Oak-Mongo --db my-oak --host 127.0.0.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment