You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »


Homebrew

Homebrew offers several alternatives methods of installation.  The most relevant are the instructions labeled "Untar Anywhere" found on the official documentation page.  Here's is a complete script for installing and running homebrew inside your user's home directory where you don't need EP. 

Install Homebrew
# navigate to your home directory
cd ~/

# create a homebrew folder in your home directory
mkdir homebrew

# download homebrew software into your new folder
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew

eval "$(homebrew/bin/brew shellenv)"
brew update --force --quiet
chmod -R go-w "$(brew --prefix)/share/zsh"

# add homebrew to zsh shell
echo 'export PATH="/Users/username/homebrew/bin:$PATH"' >> ~/.zshrc

# add homebrew to bash shell
echo 'export PATH="/Users/username/homebrew/bin:$PATH"' >> ~/.bash_profile

# if homebrew doesn't work immediately, don't worry, you just have to source the new path
source ~/.zshrc # if you are using zsh
source ~/.bash_profile # if you are using bash

# you can test with the following
brew --version

Java

With homebrew installed you can install Java with just a couple commands.

Install Java
# use homebrew to install Java
brew install java

# add Java to your PATH environmental variable, so your terminal knows where to find Java
echo 'export PATH="/Users/username/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc # if you are using zsh
echo 'export PATH="/Users/username/homebrew/opt/openjdk/bin:$PATH"' >> ~/.zshrc # if you are using bash

# you can test that it works with the following
java --version

ElasticMQ

ElastiqMQ provides official instructions for a stand-alone installation, which you can find here: https://github.com/softwaremill/elasticmq#installation-stand-alone.  Below is the key code for that:

ElasticMQ
# download/install ElasticMQ Java Archive (JAR) File
curl https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.3.9.jar --output elasticmq-server-1.3.9.jar

# run the ElasticMQ JAR we downloaded in the previous step
java -jar elasticmq-server-1.3.9.jar

  • No labels