6

我设法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. 

它可能与我每次运行时看到的警告有关Jupyterhub

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.
4

2 回答 2

8
sudo pkill node

将终止代理服务。

重新启动 Jupyterhub 将重新启动它。

对于 Ubuntu 14.04

jupyterhub --no-ssl &

如果您没有设置 ssl 证书,则没有 ssl 或 & 以在您的 tty 或终端会话关闭时保持服务运行

您可以使用 sudo pkill jupyterhub 来终止该进程。(并不总是像创建初始化服务那样可靠)

于 2016-08-16T18:43:54.370 回答
3

不用重启整个机器,重启jupyterhub之前杀掉configurable-http-proxy进程就足够了:

[root@box jupyterhub]# ps aux | grep proxy 
jupyrhub 42079 0.0  0.1 741424 20248 ?        Sl   15:10   0:00 node /usr/bin/configurable-http-proxy --ip  --port 9876 --api-ip 127.0.0.1
--api-port 9877 --default-target http://127.0.0.1:8081 --ssl-key /etc/pki/tls/private/server_AZL-BUEdge-01.key --ssl-cert
/etc/pki/tls/private/server_AZL-BUEdge-01_fullchain.pem root     42683
0.0  0.0 103308   864 pts/10   S+   15:20   0:00 grep proxy 
[root@box]# kill -9 42079
于 2016-06-09T15:28:44.397 回答