Jupyter notebook远程访问服务器

使用jupyter notebook远程访问服务器能让我们更加方便的编写代码,运行和进行可视化等操作!

参考链接:

https://blog.csdn.net/u013473520/article/details/50696771

https://blog.csdn.net/a819825294/article/details/55657496

(1)以下操作均在服务器上操作

1)安装必要配置

确认是否已经安装jupyter notebook

如未安装,打开终端输入

1
sudo pip install jupyter

2)生成配置文件

终端中输入

1
jupyter notebook --generate-config

生成以后,后面需要用到

3)生成密码(后续写配置文件、登录Jupyter notebook需要,需要输入一大堆东西)

打开python终端,即

1
2
3
4
5
6
7
# 输入python,以下操作在python中执行
In [1]: from IPython.lib import passwd

In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:xxxxxxxxxxxxxxxxxxxxxx(一段密文)'

执行完之后退出python终端

命令为

1
exit()

接下来生成秘钥:

1
2
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem
# 按照提示填写一大堆东西

创建一个服务器配置:

1
ipython profile create nbserver

确认没有报错

4)修改默认配置文件

1
vim ~/.jupyter/jupyter_notebook_config.py

进行如下修改(这里可以自行配置):

1
2
3
4
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha1:xxxxxxxxxxxxxxxxxxxxxx(一段密文)刚才复制的那个密文'
c.NotebookApp.port = 9999 #随便指定一个端口
c.NotebookApp.certfile = u'/root/.jupyter/mycert.pem' # 注意这里要用绝对路径,我在这里踩坑了

最后启动服务器:

1
2
ipython notebook --profile=nbserver
# ps:使用 jupyter notebook 也可以启动

(2)在本机(自己的PC)上使用

在浏览器上输入网址:

1
2
3
4
5
服务器 IP+端口号
假设服务器IP:1.1.1.1
端口号为 9999
# 则在浏览器输入下面的内容即可
1.1.1.1:9999

然后你就可以很舒服的用本地访问服务器了

Contents
|