Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.22 KB

useful_commands.md

File metadata and controls

48 lines (31 loc) · 1.22 KB

kill configurable-http-proxy

$ ps aux | grep configurable-http-proxy $ kill ####

nginx

sudo service nginx stop sudo service nginx start sudo service nginx restart nginx -t

Shutdown and restart server

sudo shutdown -r now

Start jupyterhub with sudo (need to do this to allow other users to logon)

sudo /home/peter/anaconda3/bin/jupyterhub

Start jupyterhub as service, will run continously

sudo systemctl start jupyterhub sudo systemctl <start|stop|status> jupyterhub

Add environmental variables:

$ export OAUTH_CLIENT_SECRET=xxxxxxxxxxx

#change the systemctl start jupyterhub configurations

if changes are made to /etc/systemd/system/jupyterhub.service need to reload:

$ sudo systemctl daemon-reload $ sudo systemctl start jupyterhub

Similar to the above but with a couple changes. Assuming you're using /opt/anaconda3/jupyterhub for your configs, save this as /etc/systemd/system/jupyterhub.service

[Unit] Description=Jupyterhub After=syslog.target network.target

[Service] User=root Environment="PATH=/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/opt/anaconda3/bin" ExecStart=/opt/anaconda3/bin/jupyterhub -f /etc/jupyterhub/jupyterhub_config.py

[Install] WantedBy=multi-user.target