我设法在服务器上建立了Jupyterhub,它运行得很好。由于我尝试重新启动Jupyterhub服务,它不再工作,当我尝试运行它时,我看到错误消息:

Proxy appears to be running at http://*:8000/, but I can't access it (HTTP 403: Forbidden)
Did CONFIGPROXY_AUTH_TOKEN change?

在网络浏览器中
Error 503: Proxy Target Missing.

它可能与每次运行时看到的警告有关:
Generating CONFIGPROXY_AUTH_TOKEN. Restarting the Hub will require restarting the proxy.
Set CONFIGPROXY_AUTH_TOKEN env or JupyterHub.proxy_auth_token config to avoid this message.

最佳答案

sudo pkill node

将终止代理服务。
重新启动Jupyterhub将重新启动它。
适用于Ubuntu 14.04
jupyterhub --no-ssl &

如果没有设置SSL证书,则不使用SSL
&或与号,以便在TTY或终端会话关闭时保持服务运行
您可以使用sudo pkill jupyterhub来终止进程。(并不总是像创建init服务那样可靠)

08-28 11:44