Hi,
I already have a Fluent HPC server running on my cluster. I would like to connect and send commands to it using PyFluent, but when I try to do so, I get the following error:
RuntimeError: failed to connect to all addresses; last error: UNIMPLEMENTED: ipv4:127.0.0.1:50000: Trying to connect an http1.x server (HTTP status 404)
For reference, this is the code. 50000 is the port the webserver is running on:
fluent = pyfluent.connect_to_fluent(
ip="127.0.0.1",
port=50000,
password=""
)
The WebUI works and is accessible from a web browser. We've tried using both a hostname, the local IPv4 adress and the loopback address, with the same results.