我目前正在尝试通过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:
因此服务器正在运行,并且在测试连接时会触发错误。我认为这与代理设置有关。但是我不知道如何以及在哪里配置。
有帮助吗?
答案 0 :(得分:1)
通常,您需要取消设置“ http_proxy”环境变量。
如此:
del os.environ[“http_proxy”]