Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 752 Bytes

QUICKSTART.md

File metadata and controls

31 lines (25 loc) · 752 Bytes

Quick Start

Step 1: Download txle Release

Download the release and un-tar it.

# tar -xzf actiontech-txle-$version.tar.gz
# mv actiontech-txle-$version txle
# cd txle

Step 2: Preparation

  • MySQL Instance

    Start a MySQL Instance in your machine where the txle service is deployed. And create a database called 'txle', a user called 'test' and the password is '123456'.

  • JVM

    Install Java 1.8 or later in your machine and make sure the JAVA_HOME configuration is correct.

Step 3: Start server

# ./txle start
Starting the txle server....
Start successfully!

Step 4: Stop server

# ./txle stop
Stopping the txle server....
Stop successfully!