如果正常启动
通过本机IP访问都不行,就更不提远程访问了
记得当时在说设置默认工作路径的时候,提过配置文件https://www.cnblogs.com/dotnetcrazy/p/9261524.html
生成配置文件:jupyter-notebook --generate-config
配置文件其实也是可以支持远程访问的(服务器同样适用)
code ~/.jupyter/jupyter_notebook_config.py 【没装vscode的可以用gedit ~/.jupyter/jupyter_notebook_config.py 】
只是我们只想临时远程共享而进行部分代码演示,有没有简单方法呢?
==》jupyter-notebook --ip=*
访问:http://192.168.36.235:8888?token=xxx
OK了
Win10远程测试:
扩展:(反向代理也可以实现)
如果是ssh连接远程服务器在登出的时候运行的程序被信号杀了怎么办?
可以使用nohup(进程不响应SIGHUP信号)
nohup jupyter notebook --ip=*
0