Skip to content

Instantly share code, notes, and snippets.

@showaltb
Created June 22, 2012 21:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save showaltb/2975239 to your computer and use it in GitHub Desktop.
Save showaltb/2975239 to your computer and use it in GitHub Desktop.
Configuring full stack on CentOS 6.x
# Install JDK
yum install java-1.6.0-openjdk-devel
# Install ActiveMQ
cd /package
wget http://www.carfab.com/apachesoftware/activemq/apache-activemq/5.6.0/apache-activemq-5.6.0-bin.tar.gz
cd /opt
tar xf /package/apache-activemq-5.6.0-bin.tar.gz
ln -s apache-activemq-5.6.0 activemq
# Install Mule ESB
cd /package
wget http://dist.codehaus.org/mule/distributions/mule-standalone-3.2.1.tar.gz
cd /opt
tar xf /package/mule-standalone-3.2.1.tar.gz
ln -s mule-standalone-3.2.1 mule
# Install Maven
cd /package
wget http://www.gtlib.gatech.edu/pub/apache/maven/binaries/apache-maven-3.0.4-bin.tar.gz
cd /opt
tar xf /package/apache-maven-3.0.4-bin.tar.gz
ln -s apache-maven-3.0.4 maven
ln -s /opt/maven/bin/mvn /usr/local/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment