H2O连接错误:禁止使用HTTP 403

时间:2018-07-17 09:25:01

标签: linux ssh proxy http-status-code-403 h2o

我目前正在尝试通过Python在外部ssh机器(Linux)上运行H2O服务器实例。

但是运行h2o.init()时出现以下错误:

H2OConnectionError: Could not establish link to the H2O cloud http://127.0.0.1:54321 after 20 retries
[02:43.11] H2OServerError: HTTP 403 Forbidden:

因此服务器正在运行,并且在测试连接时会触发错误。我认为这与代理设置有关。但是我不知道如何以及在哪里配置。

有帮助吗?

1 个答案:

答案 0 :(得分:1)

通常,您需要取消设置“ http_proxy”环境变量。

如此:

del os.environ[“http_proxy”]