Replies: 1 comment 1 reply
-
First, ik_llama.cpp is a fork of llama.cpp that has diverged from the main. If you are using this fork, go to their repo and ask for help there. Second, if you are using Windows (based on another topic you started), make sure the firewall is not blocking the IP and port you set. This applies for both llama.cpp and the fork. Try with a different port (in case 8080 is blocked by the firewall) and specifically setting the host as your IP 192.168.0.110, and/or modify the Windows firewall. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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:
The server is running on a machine with the IP address 192.168.0.110.
I started the server with the --host 0.0.0.0 flag to allow external connections.
The client machine is on the same network with the IP address 192.168.0.101.
Behavior:
When I access http://192.168.0.110:8080 from a web browser on the same machine (the server machine), the web UI loads correctly. The server log shows a successful request:
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.
All reactions