This is an automated email from the ASF dual-hosted git repository.
shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi-site.git
The following commit(s) were added to refs/heads/master by this push:
new 325b516 Update parts of the tutorial
325b516 is described below
commit 325b5162d6acf514c9478ae8b8a17c75a75ba9cf
Author: Serge Huber <[email protected]>
AuthorDate: Fri Jan 10 15:26:30 2020 +0100
Update parts of the tutorial
---
src/main/webapp/tutorial.html | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/main/webapp/tutorial.html b/src/main/webapp/tutorial.html
index 8340cdb..8afdc71 100644
--- a/src/main/webapp/tutorial.html
+++ b/src/main/webapp/tutorial.html
@@ -87,11 +87,11 @@
<!-- Migrating ES -->
<div id="ubuntu-tutorial" class="row mb-5 mt-5">
<div class="col">
- <h2 class="pb-3 border-bottom">Running and Interfacing with Apache
Unomi 1.3 on Ubuntu</h2>
+ <h2 class="pb-3 border-bottom">Running and Interfacing with Apache
Unomi 1.4 on Ubuntu</h2>
<p>This section includes a quick tutorial demonstrating how to
install and interface with Unomi running on Ubuntu. The purpose of this
tutorial is to demonstrate how to use the features of Apache Unomi.</p>
<h3 class="pt-3 pb-2 text-dark">Install Java 8</h3>
- <p>Unomi 1.3 requires Java 8. Use these command to install this
specific version:</p>
+ <p>Unomi 1.4 requires Java 8. Use these command to install this
specific version:</p>
<pre><code>
apt install openjdk-8-jdk
</code></pre>
@@ -111,7 +111,7 @@ source /etc/environment
</code></pre>
<h3 class="pt-3 pb-2 text-dark">Installing ElasticSearch 5.6.3</h3>
- <p>Unomi 1.3 requires ElasticSearch version 5.6.3. Use these
command to install this specific version:</p>
+ <p>Unomi 1.4 requires ElasticSearch version 5.6.3. Use these
command to install this specific version:</p>
<pre><code>
apt-get update && apt-get -y install apt-transport-https curl wget
wget
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.3.deb
@@ -131,16 +131,16 @@ service elasticsearch start
service elasticsearch status
</code></pre>
- <h3 class="pt-3 pb-2 text-dark">Installing Unomi 1.3</h3>
- <p>You can install a binary distribution from any of <a
href="https://www.apache.org/dyn/closer.lua/incubator/unomi/1.3.0-incubating/unomi-1.3.0-incubating-bin.tar.gz">these</a>
mirrors. Just download and extract the files, then run it using Karaf:</p>
+ <h3 class="pt-3 pb-2 text-dark">Installing Unomi 1.4</h3>
+ <p>You can install a binary distribution from any of <a
href="https://www.apache.org/dyn/closer.lua/incubator/unomi/1.4.0/unomi-1.4.0-bin.tar.gz">these</a>
mirrors. Just download and extract the files, then run it using Karaf:</p>
<pre><code>
-wget
http://apache.mirrors.pair.com/incubator/unomi/1.3.0-incubating/unomi-1.3.0-incubating-bin.tar.gz
-tar -xzf unomi-1.3.0-incubating-bin.tar.gz
+wget
http://apache.mirrors.pair.com/incubator/unomi/1.4.0/unomi-1.4.0-bin.tar.gz
+tar -xzf unomi-1.4.0-bin.tar.gz
</code></pre>
<p>After it is extracted, move it into <code>/opt/unomi</code>:</p>
<pre><code>
mkdir /opt/unomi
-mv unomi-1.3.0-incubating/*
+mv unomi-1.4.0-incubating/*
</code></pre>