Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Info |
---|
The following instructions are for Debian or Ubuntu Linux. For other Linux distributions please adapt the commands accordingly.คำแนะนำต่อไปนี้สำหรับ Debian หรือ Ubuntu Linux รุ่นอื่นกรุณาปรับคำสั่งให้เหมาะสม |
...
Install ติดตั้ง JDK 7 or above. Please make sure 8. โปรดตรวจสอบการตั้งค่า "JAVA_HOME" is set.
Code Block |
---|
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
Code Block |
---|
sudo nano /etc/environment |
In this file, add the following line ในไฟล์นี้, เพิ่มคำสั่งตามนี้ :
Code Block |
---|
JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64" |
Now reload the file and testทำการรีโหลดไฟล์และทดสอบ:
Code Block |
---|
source /etc/environment echo $JAVA_HOME |
Install ติดตั้ง MySQL 5.5 or above.หรือสูงกว่า
Code Block |
---|
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.สามารถเรียกใช้งานได้ โดยการพิมพ์คำสั่งดังนี้ :
Code Block |
---|
sudo apt-get install maven mvn -version |
Install ติดตั้ง Github Client.
Code Block |
---|
sudo apt-get install git git --version |
...
Code Block |
---|
wget http://dev.joget.org/community/download/attachments/19104566/install-libraries.zip unzip -a install-libraries.zip cd install-libraries ./install_linux.sh cd ~ |
...
Code Block |
---|
mkdir joget_src cd joget_src git clone https://github.com/jogetworkflow/jw-community.git --branch 5.0-SNAPSHOT cd ~ |
...
...
สร้างฐานข้อมูลCreate database.
Code Block |
---|
mysql -uroot create database jwdb; exit mysql -uroot jwdb < joget_src/jw-community/wflow-install/src/main/resources/data/jwdb-empty.sql |
Download ดาวน์โหลด wflow.zip and extract in your และแตกไฟล์ใน user home.
Code Block |
---|
wget http://dev.joget.org/community/download/attachments/19104566/wflow.zip unzip -a wflow.zip cd wflow nano app_datasource-default.properties |
Make sure the configuration in โปรดตรวจสอบให้แน่ใจการกำหนดค่าใน "app_datasource-default.properties" is correctให้ถูกต้อง.
Code Block |
---|
workflowDriver=com.mysql.jdbc.Driver workflowUrl=jdbc\:mysql\://localhost\:3306/jwdb?characterEncoding\=UTF-8 workflowUser=root profileName= workflowPassword= |
...
Code Block |
---|
cd ~/joget_src/jw-community/wflow-app/ mvn clean install |