You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by co...@apache.org on 2016/02/20 17:59:34 UTC

incubator-zeppelin git commit: [document] update document for zeppelin-web under proxy env.

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master e4ab6043f -> 6ab4b6276


[document] update document for zeppelin-web under proxy env.

### What is this PR for?
update document for zeppelin-web project in proxy environment

### What type of PR is it?
Documentation

### Todos
* [x] - update document.

### Is there a relevant Jira issue?
no.

### How should this be tested?
seeing document under zeppelin-web/README.md

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Darren Ha <nb...@gmail.com>

Closes #649 from nberserk/proxydocument and squashes the following commits:

a40e9ea [Darren Ha] fix indent
5e2519f [Darren Ha] fix indent of pom.xml
71b5c56 [Darren Ha] added proxy setting guide for npm in zeppelin-web


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

Branch: refs/heads/master
Commit: 6ab4b62769498748e74385f2b6d3d786c9a9649c
Parents: e4ab604
Author: Darren Ha <nb...@gmail.com>
Authored: Fri Feb 19 10:27:55 2016 +0900
Committer: Damien CORNEAU <co...@gmail.com>
Committed: Sat Feb 20 08:59:17 2016 -0800

----------------------------------------------------------------------
 zeppelin-web/README.md | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/6ab4b627/zeppelin-web/README.md
----------------------------------------------------------------------
diff --git a/zeppelin-web/README.md b/zeppelin-web/README.md
index 92a0131..ad4c3bf 100644
--- a/zeppelin-web/README.md
+++ b/zeppelin-web/README.md
@@ -30,16 +30,31 @@ This will launch a Zeppelin WebApplication on port **9000** that will update on
 
 #### Troubleshooting
 
+**git error**
+
 In case of the error `ECMDERR Failed to execute "git ls-remote --tags --heads git://xxxxx", exit code of #128`
 
 change your git config with `git config --global url."https://".insteadOf git://`
 
-**OR**
+**proxy issues**
 
 Try to add to the `.bowerrc` file the following content:
 ```
   "proxy" : "http://<host>:<port>",
   "https-proxy" : "http://<host>:<port>"
+  ```
+
+also try to add proxy info  to npm install command:
+```
+<execution>
+	<id>npm install</id>
+	<goals>
+    	<goal>npm</goal>
+    </goals>
+    <configuration>
+    	<arguments>--proxy=http://<host>:<port> --https-proxy=http://<host>:<port></arguments>
+    </configuration>
+</execution>
 ```