Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
The following instructions are for Debian or Ubuntu Linux. For other Linux distributions please adapt the commands accordingly.

...

  1. Install the Java Runtime Environment (JRE) or Java Development Kit (JDK) version

    6

    7 and above

    Code Block
    languagebash
    sudo apt-get update
    sudo apt-get install default-jre
  2. Install MySQL Server version 5.5 and above

  3. Create an empty database 'jwdb' in the MySQL server
  4. Code Block
    languagebash
    sudo apt-get install mysql-server
    sudo service mysql start
  5. Create a new directory for the installation

    Code Block
    languagebash
    mkdir joget
    cd joget
  6. Download the Joget Workflow Linux tar.gz bundle from http://www.joget.org/download
  7. Extract the Linux tar.gz bundle

    Code Block
    languagebash
    tar xvfz joget-enterprise-linux-x.x.x.tar.gz 
    cd joget-enterprise-linux-x.x.x
    Execute the setup script to create the required database tables: ./setup.sh
  8. Execute the bundled Apache Tomcat application server

    :

    Code Block
    languagebash
    ./tomcat8.sh
    run
     start
  9. View the Apache Tomcat log file, when startup is complete it should say "Server startup in XXXX ms"

    Code Block
    languagebash
    tail -f apache-tomcat-8.0.20/logs/catalina.out
  10. Access the App Center at http://localhost:8080/jw
  11. Follow on with Setting Up Database.

...