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

Compare with Current View Page History

« Previous Version 2 Current »

The following instructions are for Debian or Ubuntu Linux. For other Linux distributions please adapt the commands accordingly.

 

1. Install Prerequisites

  • Install JDK 7 or above. Please make sure "JAVA_HOME" is set.

    sudo apt-get update
    sudo apt-get install default-jdk

    For more detail, you can refer to https://www.digitalocean.com/community/tutorials/how-to-install-java-on-ubuntu-with-apt-get

    Set the "JAVA_HOME" by edit the file /etc/environment

    sudo nano /etc/environment

    In this file, add the following line :

    JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64"

    Now reload the file and test:

    source /etc/environment
    echo $JAVA_HOME
  • Install MySQL 5.5 or above.

    sudo apt-get install mysql-server
    sudo service mysql start
  • Install Apache Maven 2.2.1 or above. Please make sure "mvn" command is able to execute from command line.

    sudo apt-get install maven
    mvn -version
  • Install Github Client.

    sudo apt-get install git
    git --version

2. Install 3rd Party Libraries

wget http://dev.joget.org/community/download/attachments/19104566/install-libraries.zip
unzip -a install-libraries.zip
cd install-libraries
./install_linux.sh

 

 


  • No labels