-
-
Save whophil/49467ccdd5081d164d37 to your computer and use it in GitHub Desktop.
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 |
Replaced
exec /home/phil/Enthought/Canopy_64bit/User/bin/jupyter-notebook --config='/home/phil/.jupyter/jupyter_notebook_config.py'
with
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'
So that Jupyter runs as user phil
(or of your choosing) instead of as root.
Highly useful. Thankyou!
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
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
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/
To be placed in
/etc/init/
with644
permissions