Last active
August 29, 2015 14:10
-
-
Save cdario/b396bb420c0b8ebc24b2 to your computer and use it in GitHub Desktop.
camunda_on_debian
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
#!/bin/bash | |
echo "Installing Java 7" | |
#install java7 pre-requisite | |
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" > /etc/apt/sources.list.d/webupd8team-java.list | |
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" >> /etc/apt/sources.list.d/webupd8team-java.list | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 | |
apt-get --assume-yes update | |
# avoid agreement pop up | |
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections | |
# java7 | |
apt-get install oracle-java7-installer | |
java -version | |
echo "Downloading and installing camunda 7.2.0 standalone" | |
mkdir /opt/camunda && cd /opt/camunda && wget http://camunda.org/release/camunda-bpm/tomcat/7.2/camunda-bpm-tomcat-7.2.0.tar.gz | |
tar -zxvf camunda-bpm-tomcat-7.2.0.tar.gz && rm camunda-bpm-tomcat-7.2.0.tar.gz | |
echo "Done! Run /opt/camunda/start-camunda.sh to begin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment