---
# System prepended metadata

title: Running Jupyter Notebook on a remote server

---

# Running Jupyter Notebook on a remote server

https://docs.anaconda.com/anaconda/user-guide/tasks/remote-jupyter-notebook/


remote:
```bash
jupyter-lab --no-browser --port=9990
```


```bash
ssh \
-L 9990:localhost:9990 \
-L 9991:localhost:9991 \
-L 9992:localhost:9992 \
-o "ServerAliveInterval 60" yuhw@kratos.phy.bnl.gov
```