You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
6 years ago
|
# Set up Debian Stretch server.
|
||
|
|
||
|
# Install dependencies.
|
||
|
apt update
|
||
|
apt install openjdk-8-jdk-headless
|
||
|
|
||
|
# Get Mule
|
||
|
# https://developer.mulesoft.com/download-mule-esb-runtime
|
||
|
|
||
|
wget https://repository-master.mulesoft.org/nexus/content/repositories/releases/org/mule/distributions/mule-standalone/4.1.1/mule-standalone-4.1.1.tar.gz
|
||
|
|
||
|
tar zxvf mule-standalone-4.1.1.tar.gz
|
||
|
|
||
|
# Run manually
|
||
|
cd mule-standalone-4.1.1/bin
|
||
|
./mule
|
||
|
|