nilsherzig / LLocalSearch

LLocalSearch is a completely locally running search aggregator using LLM Agents. The user can ask a question and the system will use a chain of LLMs to find the answer. The user can see the progress of the agents and the final answer. No OpenAI or Google API keys are needed.
Apache License 2.0
5.57k stars 348 forks source link

Couldnt acess the localhost port 3000 #110

Open s1lverex opened 4 months ago

s1lverex commented 4 months ago

I have an ongoing connection to open web ui on localhost 3000. Is there a way to change the default port of llocal search without getting the error?

m047m3d commented 4 months ago

the port 3000 is probably used by ollama(or other app), so, you should change it in the docker-compose.yaml file in ports: -'3000:80' to something example like ports: -'3300:80'

Arnaud3013 commented 2 weeks ago

and after changing port, don't forget to update your docker -> docker-compose up -d