Shutdown Jupyter Server

Q

How to Shutdown Jupyter Server?

✍: FYIcenter.com

A

There are 2 ways to shutdown your local Jupyter Server:

1. Using Web Interface - On the Jupyter Web interface, click the "Quit" button on the top-right corner.

After a few seconds, you will see the shutdown confirmation message.

Jupyter Notebook - Shutdown Server
Jupyter Notebook - Shutdown Server

2. Using "kill -9" Command - On the local server command line, find and kill the Jupyter server process.

fyicenter$ sudo ps -efl | grep jupyter
  0 S fyicenter   3769422 3768011  /usr/local/anaconda3/bin/python \
    /usr/local/anaconda3/bin/jupyter-notebook
  0 S fyicenter   3778873 3769422  /usr/local/anaconda3/bin/python \
    -m ipykernel_launcher -f /home/fyicenter/.local/share/jupyter/runtime/..

fyicenter$ sudo kill -9 3769422

 

Setup Jupyter Server for Remote Access

Start Jupyter in Conda Environment

Installing and Running Jupyter

⇑⇑ Jupyter - Frequently Asked Questions

2021-11-12, 846🔥, 0💬