-
|
I'm trying to access the ik-llama.cpp server from another computer on my local network, but I'm running into an issue. Setup: Behavior: However, when I try to access http://192.168.0.110:8080/ from the other computer, the browser receives a 404 error with this JSON response: The server log for this failed remote request looks like this: Could you please advise on how to properly configure the server for access from other computers on the network? Is this a known issue? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
|
I typically use --port 5000 for the server, and then 192.168.0.110:5000 to connect the client |
Beta Was this translation helpful? Give feedback.
-
|
Client IP appears on the server logs, it means that firewall is not blocking the port. You could try one of the API endpoints with
|
Beta Was this translation helpful? Give feedback.
-
|
Hopefully is not IE 😄 Try with recent version of Firefox |
Beta Was this translation helpful? Give feedback.
-
|
Thanks to everyone who responded. I figured out what the problem was. I’d spent two days asking ChatGPT about it and it couldn’t answer; today it got it right on the first try. The issue was that the computer I was sending the request from had a proxy enabled. It was sending the full URL—instead of “/”, the server was receiving “http://192.168.0.110:8080/”, couldn’t handle it, and returned 404. Sorry for taking up your time. |
Beta Was this translation helpful? Give feedback.
Thanks to everyone who responded. I figured out what the problem was. I’d spent two days asking ChatGPT about it and it couldn’t answer; today it got it right on the first try.
The issue was that the computer I was sending the request from had a proxy enabled. It was sending the full URL—instead of “/”, the server was receiving “http://192.168.0.110:8080/”, couldn’t handle it, and returned 404.
Sorry for taking up your time.