You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2016/02/28 16:48:37 UTC

incubator-zeppelin git commit: [ZEPPELIN-498]Manual upgrade procedure for Zeppelin

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 29dd1f090 -> b960f09d0


[ZEPPELIN-498]Manual upgrade procedure for Zeppelin

### What is this PR for?
Describe Manual upgrade procedure for Zeppelin.

### What type of PR is it?
Documentation

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-498

### How should this be tested?
Install jekyll on a local machine.
Run website.
Check new page in localhost.

### Screenshots
<img width="1032" alt="2016-02-27" src="https://cloud.githubusercontent.com/assets/10624086/13371882/230f5f94-dd74-11e5-9c2d-82ceec57c8b1.png">

Author: Minwoo Kang <mi...@outlook.com>

Closes #753 from mwkang/master and squashes the following commits:

916bb7a [Minwoo Kang] [ZEPPELIN-498]Upgrade Version instead of just Upgrade
c7b24d5 [Minwoo Kang] [ZEPPELIN-498]Manual upgrade procedure for Zeppelin


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/b960f09d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/b960f09d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/b960f09d

Branch: refs/heads/master
Commit: b960f09d0b0bf6c0943b3e7adf8a0c7a115e4db0
Parents: 29dd1f0
Author: Minwoo Kang <mi...@outlook.com>
Authored: Sun Feb 28 15:38:54 2016 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Sun Feb 28 07:52:18 2016 -0800

----------------------------------------------------------------------
 docs/_includes/themes/zeppelin/_navigation.html |  2 +
 docs/install/upgrade.md                         | 44 ++++++++++++++++++++
 2 files changed, 46 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/b960f09d/docs/_includes/themes/zeppelin/_navigation.html
----------------------------------------------------------------------
diff --git a/docs/_includes/themes/zeppelin/_navigation.html b/docs/_includes/themes/zeppelin/_navigation.html
index 9eddbf9..59c2728 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -26,6 +26,8 @@
                 <li><a href="{{BASE_PATH}}/install/yarn_install.html">YARN Install</a></li>
                 <li><a href="{{BASE_PATH}}/install/virtual_machine.html">Virtual Machine Install</a></li>
                 <li role="separator" class="divider"></li>
+                <li><a href="{{BASE_PATH}}/install/upgrade.html">Upgrade Version</a></li>
+                <li role="separator" class="divider"></li>
                 <!-- li><span><b>Tutorial</b><span></li -->
                 <li><a href="{{BASE_PATH}}/tutorial/tutorial.html">Tutorial</a></li>
                 <li role="separator" class="divider"></li>

http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/b960f09d/docs/install/upgrade.md
----------------------------------------------------------------------
diff --git a/docs/install/upgrade.md b/docs/install/upgrade.md
new file mode 100644
index 0000000..3124576
--- /dev/null
+++ b/docs/install/upgrade.md
@@ -0,0 +1,44 @@
+---
+layout: page
+title: "Manual upgrade procedure for Zeppelin"
+description: ""
+group: install
+---
+<!--
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+{% include JB/setup %}
+
+## Manual upgrade procedure for Zeppelin
+
+Basically, newer version of Zeppelin works with previous version notebook directory and configurations.
+So, copying `notebook` and `conf` directory should be enough.
+
+### Instructions
+1. Stop Zeppelin
+
+    ```
+    bin/zeppelin-daemon.sh stop
+    ```
+
+1. Copy your `notebook` and `conf` directory into a backup directory
+
+1. Download newer version of Zeppelin and Install. See [Install page](./install.html)
+
+1. Copy backup `notebook` and `conf` directory into newer version of Zeppelin `notebook` and `conf` directory
+
+1. Start Zeppelin
+
+   ```
+   bin/zeppelin-daemon.sh start
+   ```
\ No newline at end of file