Unable to Connect to Triton Server at localhost:8000 #5413
-
Description Triton Information To Reproduce Verify Triton Is Running Correctly with Expected behavior Environement |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @osuzdalev, we don't officially support Mac OS, but some things that's just off the top of my head:
|
Beta Was this translation helpful? Give feedback.
-
Hi @krishung5, thank you for answering! I added the flag and attached the logs in text files below. When I run: I still get the error:
However I have found that sending an inference request from the Triton SDK container works. (logs attached) When I try to call the python exemples like "image_client.py" it doesn't, I get the following:
The port 8000 is not used by any other process. |
Beta Was this translation helpful? Give feedback.
-
This isn't an issue with Triton. This is a Docker networking issue specific to Macs. According to the Docker documentation, You may have to do more research to see how to properly expose/forward the port to have it accessible between containers on a Mac. The above should work once the networking is properly set up. |
Beta Was this translation helpful? Give feedback.
This isn't an issue with Triton. This is a Docker networking issue specific to Macs.
According to the Docker documentation,
The host networking driver only works on Linux hosts, and is not supported on Docker Desktop for Mac, Docker Desktop for Windows, or Docker EE for Windows Server.
I believe this is because Docker in Mac is run in a Linux virtual machine so the host shares the virtual machine's network instead of the host's.You may have to do more research to see how to properly expose/forward the port to have it accessible between containers on a Mac. The above should work once the networking is properly set up.