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