WebSocket连接失败:Jupyter Notebook

时间:2019-05-14 06:23:57

标签: apache jupyter-notebook ipython jupyter

Jupyter笔记本电脑无法连接到内核。我已经搜索并修改了虚拟配置,但是它们都不起作用。

  1. 如果我使用 IP地址来连接到笔记本,则其工作正常。 (myIp:9999 / tree)

  2. 如果我尝试通过域名连接到笔记本,则WebSocket连接失败。 (nb.domainName.com) enter image description here

我的Apache服务器虚拟主机配置:

<VirtualHost *:80>

     ServerName nb.domainName.com
     ServerAlias www.nb.domainName.com

      ProxyRequests Off
      ProxyPreserveHost On

      ProxyPass / http://localhost:9999/ connectiontimeout=5 timeout=30 
      ProxyPassReverse / http://localhost:9999/

      <Location ~ "/(user/[^/]*)/(api/kernels/[^/]+/channels|terminals/websocket)/?">
         ProxyPass ws://localhost:9999
         ProxyPassReverse ws://localhost:9999
      </Location>

</VirtualHost>

0 个答案:

没有答案