问题:本地端jupyter notebook远程服务器运行代码
解决方案:
- 外网访问内网(服务器端)
jupyter notebook --no-browser --port=8889 --ip=127.0.0.1
- 本地转发端口(本机)
ssh -N -f -L localhost:8888:localhost:8889 -p 22 remote_user@remote_host
其中:remote_user为服务器用户名,我的为dell,remote_host为服务器ip地址。
备注:最后本地连接 http://127.0.0.1:8888即可用密码登录远程。