访问远程托管在ubuntu服务器上的Jupyter笔记本。

问题描述 投票:0回答:0

远程服务器使用的是ubuntu 18.04。

我在服务器上安装了 anaconda,并且已经设置了 jupyter_notebook_config.py。

<username> 是我在服务器上的用户名。

<server_name> 是服务器的名称。

以下是我启动Jupiter笔记本时的输出结果。

(base) <username>@<server_name>:~$ jupyter notebook
[W 18:55:26.855 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
[I 18:55:26.890 NotebookApp] JupyterLab extension loaded from /home/<username>/anaconda3/lib/python3.7/site-packages/jupyterlab
[I 18:55:26.890 NotebookApp] JupyterLab application directory is /home/<username>/anaconda3/share/jupyter/lab
[I 18:55:26.893 NotebookApp] Serving notebooks from local directory: /home/<username>
[I 18:55:26.893 NotebookApp] The Jupyter Notebook is running at:
[I 18:55:26.893 NotebookApp] http://<server_name>:8899/
[I 18:55:26.893 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

问题。现在,我想在我的本地浏览器上访问这本Jupyter的书,但我不知道我应该输入的网站是什么??

我试过 http://<server_name>:8899/http://<server_ip_address>:8899/

都不能用。

ubuntu jupyter-notebook anaconda jupyter ubuntu-server
© www.soinside.com 2019 - 2024. All rights reserved.