Troubleshooting Guide¶
Common issues and solutions.
Installation Issues¶
Ollama Connection Failed¶
Error: ConnectionRefusedError or "Ollama unavailable"
Solution:
Model Not Found¶
Error: "Model not found"
Solution:
ollama pull qwen2.5:3b-instruct-q4_K_M
ollama pull qwen2.5vl:7b-q4_K_M
ollama list # Verify they're installed
Port Already in Use¶
Error: "Port 8000 is already in use"
Solution:
# Use different port
file-organizer serve --port 8001
# Or find process using 8000
lsof -i :8000
kill -9 <PID>
Getting Help¶
If you can't find a solution:
- Check documentation: Full docs
- Review logs:
docker-compose logs - GitHub Issues: Report issue
- Discussions: Ask questions
- FAQ: Frequently Asked Questions