Last active
August 18, 2018 05:15
-
-
Save whophil/49467ccdd5081d164d37 to your computer and use it in GitHub Desktop.
Upstart file (Ubuntu) for Jupyter / IPython notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
start on filesystem or runlevel [2345] | |
stop on shutdown | |
description "Jupyter / IPython Notebook Upstart script" | |
script | |
export HOME="/home/phil/Notebooks"; cd $HOME | |
echo $$ > /var/run/ipython_start.pid | |
exec su -s /bin/sh -c 'exec "$0" "$@"' phil -- /home/phil/Enthought/Canopy_64bit/User/bin/jupyter-notebook --config='/home/phil/.jupyter/jupyter_notebook_config.py' | |
end script |
if you are looking for systemd,
https://www.jayakumar.org/linux/ipython-notebook-as-service-via-systemd-on-ubuntu-16-04-with-theano-gpu-support/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
I've got a problem when trying to get into my notebook server run via upstart on Ubuntu. Everything is just fine when I start jupyter from the terminal on my workstation like this$HOME echo $ $ > /var/run/ipython_start.pid exec jupyter notebook --no-browser end script
jupyter notebook --no-browser. I can happily log in via a browser on my other computer.
(Also works when I do it as root.)
However, when using this line in an upstart script
start on filesystem or runlevel [2345] stop on shutdown description "Jupyter / IPython Notebook Upstart script" script export HOME="/home/philipp/Dropbox/ipython_notebook"; cd
the server does not accept the password and will not allow me to log in. I tried some variants of what you suggest as a script up there, but to no avail. Am a bit at a loss here, and would appreciate any hint to what I am doing wrong.
Thanks
Philipp