0%

2020-11-09-安装jupyter远程访问服务器

前言

想要去用jupyter远程访问我们实验室的服务器,于是参考网上教程如下:

具体操作

一. Ubuntu下安装jupyter notebook

1. 使用Anaconda安装
1
conda install jupyter notebook
2. 使用pip安装
1
pip install jupyter notebook

二. Jupyter notebook 配置

1. 生成配置文件
1
jupyter notebook --generate-config
2. 创建密码

使用python中的passwd()创建密码,终端输入ipython打开ipython并输入:

1
2
3
4
5
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password: ******
Verify password: ******
Out [2]: 'sha1:...' #应该是密钥

复制Out [2] 显示的密码('sha1:...' 包括引号)。

3. 修改jupyter notebook的配置文件
  • 打开配置文件
1
vim ~/.jupyter/jupyter_notebook_config.py
  • 在该文件中做如下修改或直接在文件尾端添加:
1
2
3
4
5
c.NotebookApp.allow_remote_access = True #允许远程连接
c.NotebookApp.ip='*' # 设置所有ip皆可访问
c.NotebookApp.password = u'sha:..' #之前复制的密码
c.NotebookApp.open_browser = False # 禁止自动打开浏览器
c.NotebookApp.port =23333 #任意指定一个端口 ,我们指定的是23333

4. 启动jupyter notebook

终端输入:

1
jupyter notebook

或使用nohup后台运行 jupyter notebook:

1
nohup jupyter notebook >~/jupyter.log 2>&1 &  #后台挂起,并且将输出重定向到jupyter.log文件中

5. 远程访问jupyter notebook

本地浏览器输入http://(服务器地址):(配置文件中设定的端口); 假设服务器地址为210.30.97.69,配置的端口为23333,这里的浏览器输入地址应为http://210.30.97.69:23333; 即可访问jupyter notebook。

只能通过和服务器所在的局域网来访问,也就是校园网可以正常访问服务器,外网不可。试过用电脑连接我手机热点,无法访问

-------------本文结束感谢阅读-------------
卑微博主,在线求赏