You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NOTICE
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
Apache Zeppelin (incubating)
2
-
Copyright 2015 The Apache Software Foundation
2
+
Copyright 2015 - 2016 The Apache Software Foundation
3
3
4
4
This product includes software developed at
5
5
The Apache Software Foundation (http://www.apache.org/).
<td>Share where the Zeppelin notebook files will be saved</td>
192
+
</tr>
193
+
<tr>
194
+
<td>ZEPPELIN_NOTEBOOK_AZURE_USER</td>
195
+
<td>zeppelin.notebook.azure.user</td>
196
+
<td>user</td>
197
+
<td>An optional user name of Azure file share<br />i.e. <code>share/user/notebook/2A94M5J1Z/note.json</code></td>
198
+
</tr>
181
199
<tr>
182
200
<td>ZEPPELIN_NOTEBOOK_STORAGE</td>
183
201
<td>zeppelin.notebook.storage</td>
@@ -217,3 +235,39 @@ After successful start, visit [http://localhost:8080](http://localhost:8080) wit
217
235
```
218
236
bin/zeppelin-daemon.sh stop
219
237
```
238
+
239
+
#### Start Zeppelin with a service manager such as upstart
240
+
241
+
Zeppelin can auto start as a service with an init script, such as services managed by upstart.
242
+
243
+
The following is an example upstart script to be saved as `/etc/init/zeppelin.conf`
244
+
This example has been tested with Ubuntu Linux.
245
+
This also allows the service to be managed with commands such as
246
+
247
+
`sudo service zeppelin start`
248
+
`sudo service zeppelin stop`
249
+
`sudo service zeppelin restart`
250
+
251
+
Other service managers could use a similar approach with the `upstart` argument passed to the zeppelin-daemon.sh script: `bin/zeppelin-daemon.sh upstart`
252
+
253
+
##### zeppelin.conf
254
+
255
+
```
256
+
description "zeppelin"
257
+
258
+
start on (local-filesystems and net-device-up IFACE!=lo)
259
+
stop on shutdown
260
+
261
+
# Respawn the process on unexpected termination
262
+
respawn
263
+
264
+
# respawn the job up to 7 times within a 5 second period.
265
+
# If the job exceeds these values, it will be stopped and marked as failed.
266
+
respawn limit 7 5
267
+
268
+
# zeppelin was installed in /usr/share/zeppelin in this example
0 commit comments