远程访问服务器Jupyter Notebook

20221013

在远程服务器上,启动jupyter notebooks服务:
jupyter notebook --no-browser --port=8889
在本地终端中启动SSH:
ssh -N -f -L localhost:8888:localhost:8889 username@serverIP
其中:
-N 告诉SSH没有命令要被远程执行;
-f 告诉SSH在后台执行;
-L 是指定port forwarding的配置,远端端口是8889,本地的端口号的8888。
注意:username@serverIP替换成服务器的对应账号。
最后打开浏览器,访问:http://localhost:8888/

参考:
[1] https://www.jianshu.com/p/8fc3cd032d3c
[2] https://blog.csdn.net/qq_42890800/article/details/115035576

posted @ 2022-10-13 09:09  xiaoxuxli  阅读(46)  评论(0编辑  收藏  举报