[GH-ISSUE #9249] RAGFLOW : Website does not exist #31788

Closed
opened 2026-04-22 12:33:24 -05:00 by GiteaMirror · 4 comments
Owner

Originally created by @Kartheek-22 on GitHub (Feb 20, 2025).
Original GitHub issue: https://github.com/ollama/ollama/issues/9249

What is the issue?

I have pulled llama3.2 model in docker container,thats working fine but

  1. when i am Trying to enter all the things as below to add LLM in RAGFLOW , I am facing a error like below and
  2. In select Model providers >> select model provider in dropdown i am not able to see llama3.2 or any models i have pulled.

Add LLM
Model type :chat
Model name :llama3.2:latest
Base url : http://host.docker.internal:11434/
API-Key : Not mandatory
Max Tokens :100000

ERROR:
hint : 102
Fail to access model(llama3.2:latest).ERROR: <HTML><HEAD>

Relevant log output


OS

WSL2

GPU

Nvidia

CPU

Intel

Ollama version

0.5.11

Originally created by @Kartheek-22 on GitHub (Feb 20, 2025). Original GitHub issue: https://github.com/ollama/ollama/issues/9249 ### What is the issue? I have pulled llama3.2 model in docker container,thats working fine but 1. when i am Trying to enter all the things as below to add LLM in **RAGFLOW** , I am facing a error like below and 2. In select **Model providers >> select model provider** in dropdown i am not able to see llama3.2 or any models i have pulled. Add LLM Model type :chat Model name :**llama3.2:latest** Base url : http://host.docker.internal:11434/ API-Key : Not mandatory Max Tokens :100000 **ERROR:** **hint : 102** Fail to access model(llama3.2:latest).**ERROR**: <HTML><HEAD> <TITLE>Web Site does not exist</TITLE> ### Relevant log output ```shell ``` ### OS WSL2 ### GPU Nvidia ### CPU Intel ### Ollama version 0.5.11
GiteaMirror added the bug label 2026-04-22 12:33:24 -05:00
Author
Owner

@Kartheek-22 commented on GitHub (Feb 20, 2025):

Do you have a docker-compose.yml file?

yeah i have it

<!-- gh-comment-id:2671480693 --> @Kartheek-22 commented on GitHub (Feb 20, 2025): > Do you have a docker-compose.yml file? yeah i have it
Author
Owner

@Kartheek-22 commented on GitHub (Feb 20, 2025):

Any changes to be made in docker-compose.yml file

include:

  • ./docker-compose-base.yml

services:
ragflow:
depends_on:
mysql:
condition: service_healthy
image: ${RAGFLOW_IMAGE}
container_name: ragflow-server
ports:
- ${SVR_HTTP_PORT}:9380
- 80:80
- 443:443
volumes:
- ./ragflow-logs:/ragflow/logs
- ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf
- ./nginx/proxy.conf:/etc/nginx/proxy.conf
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
env_file: .env
environment:
- TZ=${TIMEZONE}
- HF_ENDPOINT=${HF_ENDPOINT}
- MACOS=${MACOS}
networks:
- ragflow
restart: on-failure
# https://docs.docker.com/engine/daemon/prometheus/#create-a-prometheus> # If you're using Docker Desktop, the --add-host flag is optional. This> extra_hosts:
- "host.docker.internal:host-gateway"

executor:

depends_on:

mysql:

condition: service_healthy

image: ${RAGFLOW_IMAGE}

container_name: ragflow-executor

Then maybe we can see it?

<!-- gh-comment-id:2671494606 --> @Kartheek-22 commented on GitHub (Feb 20, 2025): Any changes to be made in docker-compose.yml file include: - ./docker-compose-base.yml services: ragflow: depends_on: mysql: condition: service_healthy image: ${RAGFLOW_IMAGE} container_name: ragflow-server ports: - ${SVR_HTTP_PORT}:9380 - 80:80 - 443:443 volumes: - ./ragflow-logs:/ragflow/logs - ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf - ./nginx/proxy.conf:/etc/nginx/proxy.conf - ./nginx/nginx.conf:/etc/nginx/nginx.conf env_file: .env environment: - TZ=${TIMEZONE} - HF_ENDPOINT=${HF_ENDPOINT} - MACOS=${MACOS} networks: - ragflow restart: on-failure # https://docs.docker.com/engine/daemon/prometheus/#create-a-prometheus> # If you're using Docker Desktop, the --add-host flag is optional. This> extra_hosts: - "host.docker.internal:host-gateway" # executor: # depends_on: # mysql: # condition: service_healthy # image: ${RAGFLOW_IMAGE} # container_name: ragflow-executor > Then maybe we can see it?
Author
Owner

@Kartheek-22 commented on GitHub (Feb 20, 2025):

And docker-compose-base.yml? Also wrap the text in a markdown code block (```) so the formatting is preserved.

yeah, i have docker-compose-base.yml also

<!-- gh-comment-id:2671592971 --> @Kartheek-22 commented on GitHub (Feb 20, 2025): > And docker-compose-base.yml? Also wrap the text in a markdown code block (```) so the formatting is preserved. yeah, i have docker-compose-base.yml also
Author
Owner

@Kartheek-22 commented on GitHub (Feb 21, 2025):

And docker-compose-base.yml? Also wrap the text in a markdown code block (```) so the formatting is preserved.

yeah, i have docker-compose-base.yml also

`services:
es01:
container_name: ragflow-es-01
profiles:
- elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION}
volumes:
- esdata01:/usr/share/elasticsearch/data
ports:
- ${ES_PORT}:9200
env_file: .env
environment:
- node.name=es01
- ELASTIC_PASSWORD=${ELASTIC_PASSWORD}
- bootstrap.memory_lock=false
- discovery.type=single-node
- xpack.security.enabled=true
- xpack.security.http.ssl.enabled=false
- xpack.security.transport.ssl.enabled=false
- cluster.routing.allocation.disk.watermark.low=5gb
- cluster.routing.allocation.disk.watermark.high=3gb
- cluster.routing.allocation.disk.watermark.flood_stage=2gb
- TZ=${TIMEZONE}
mem_limit: ${MEM_LIMIT}
ulimits:
memlock:
soft: -1
hard: -1
healthcheck:
test: ["CMD-SHELL", "curl http://localhost:9200"]
interval: 10s
timeout: 10s
retries: 120
networks:
- ragflow
restart: on-failure

infinity:
container_name: ragflow-infinity
profiles:
- infinity
image: infiniflow/infinity:v0.6.0-dev3
volumes:
- infinity_data:/var/infinity
- ./infinity_conf.toml:/infinity_conf.toml
command: ["-f", "/infinity_conf.toml"]
ports:
- ${INFINITY_THRIFT_PORT}:23817
- ${INFINITY_HTTP_PORT}:23820
- ${INFINITY_PSQL_PORT}:5432
env_file: .env
environment:
- TZ=${TIMEZONE}
mem_limit: ${MEM_LIMIT}
ulimits:
nofile:
soft: 500000
hard: 500000
networks:
- ragflow
healthcheck:
test: ["CMD", "curl", "http://localhost:23820/admin/node/current"]
interval: 10s
timeout: 10s
retries: 120
restart: on-failure

mysql:
# mysql:5.7 linux/arm64 image is unavailable.
image: mysql:8.0.39
container_name: ragflow-mysql
env_file: .env
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD}
- TZ=${TIMEZONE}
command:
--max_connections=1000
--character-set-server=utf8mb4
--collation-server=utf8mb4_unicode_ci
--default-authentication-plugin=mysql_native_password
--tls_version="TLSv1.2,TLSv1.3"
--init-file /data/application/init.sql
ports:
- ${MYSQL_PORT}:3306
volumes:
- mysql_data:/var/lib/mysql
- ./init.sql:/data/application/init.sql
networks:
- ragflow
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-uroot", "-p${MYSQL_PASSWORD}"]
interval: 10s
timeout: 10s
retries: 3
restart: on-failure

minio:
image: quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
container_name: ragflow-minio
command: server --console-address ":9001" /data
ports:
- ${MINIO_PORT}:9000
- ${MINIO_CONSOLE_PORT}:9001
env_file: .env
environment:
- MINIO_ROOT_USER=${MINIO_USER}
- MINIO_ROOT_PASSWORD=${MINIO_PASSWORD}
- TZ=${TIMEZONE}
volumes:
- minio_data:/data
networks:
- ragflow
restart: on-failure

redis:
image: valkey/valkey:8
container_name: ragflow-redis
command: redis-server --requirepass ${REDIS_PASSWORD} --maxmemory 128mb --maxmemory-policy allkeys-lru
env_file: .env
ports:
- ${REDIS_PORT}:6379
volumes:
- redis_data:/data
networks:
- ragflow
restart: on-failure

volumes:
esdata01:
driver: local
infinity_data:
driver: local
mysql_data:
driver: local
minio_data:
driver: local
redis_data:
driver: local

networks:
ragflow:
driver: bridge
`

<!-- gh-comment-id:2673571846 --> @Kartheek-22 commented on GitHub (Feb 21, 2025): > > And docker-compose-base.yml? Also wrap the text in a markdown code block (```) so the formatting is preserved. > > yeah, i have docker-compose-base.yml also `services: es01: container_name: ragflow-es-01 profiles: - elasticsearch image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION} volumes: - esdata01:/usr/share/elasticsearch/data ports: - ${ES_PORT}:9200 env_file: .env environment: - node.name=es01 - ELASTIC_PASSWORD=${ELASTIC_PASSWORD} - bootstrap.memory_lock=false - discovery.type=single-node - xpack.security.enabled=true - xpack.security.http.ssl.enabled=false - xpack.security.transport.ssl.enabled=false - cluster.routing.allocation.disk.watermark.low=5gb - cluster.routing.allocation.disk.watermark.high=3gb - cluster.routing.allocation.disk.watermark.flood_stage=2gb - TZ=${TIMEZONE} mem_limit: ${MEM_LIMIT} ulimits: memlock: soft: -1 hard: -1 healthcheck: test: ["CMD-SHELL", "curl http://localhost:9200"] interval: 10s timeout: 10s retries: 120 networks: - ragflow restart: on-failure infinity: container_name: ragflow-infinity profiles: - infinity image: infiniflow/infinity:v0.6.0-dev3 volumes: - infinity_data:/var/infinity - ./infinity_conf.toml:/infinity_conf.toml command: ["-f", "/infinity_conf.toml"] ports: - ${INFINITY_THRIFT_PORT}:23817 - ${INFINITY_HTTP_PORT}:23820 - ${INFINITY_PSQL_PORT}:5432 env_file: .env environment: - TZ=${TIMEZONE} mem_limit: ${MEM_LIMIT} ulimits: nofile: soft: 500000 hard: 500000 networks: - ragflow healthcheck: test: ["CMD", "curl", "http://localhost:23820/admin/node/current"] interval: 10s timeout: 10s retries: 120 restart: on-failure mysql: # mysql:5.7 linux/arm64 image is unavailable. image: mysql:8.0.39 container_name: ragflow-mysql env_file: .env environment: - MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD} - TZ=${TIMEZONE} command: --max_connections=1000 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --default-authentication-plugin=mysql_native_password --tls_version="TLSv1.2,TLSv1.3" --init-file /data/application/init.sql ports: - ${MYSQL_PORT}:3306 volumes: - mysql_data:/var/lib/mysql - ./init.sql:/data/application/init.sql networks: - ragflow healthcheck: test: ["CMD", "mysqladmin" ,"ping", "-uroot", "-p${MYSQL_PASSWORD}"] interval: 10s timeout: 10s retries: 3 restart: on-failure minio: image: quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z container_name: ragflow-minio command: server --console-address ":9001" /data ports: - ${MINIO_PORT}:9000 - ${MINIO_CONSOLE_PORT}:9001 env_file: .env environment: - MINIO_ROOT_USER=${MINIO_USER} - MINIO_ROOT_PASSWORD=${MINIO_PASSWORD} - TZ=${TIMEZONE} volumes: - minio_data:/data networks: - ragflow restart: on-failure redis: image: valkey/valkey:8 container_name: ragflow-redis command: redis-server --requirepass ${REDIS_PASSWORD} --maxmemory 128mb --maxmemory-policy allkeys-lru env_file: .env ports: - ${REDIS_PORT}:6379 volumes: - redis_data:/data networks: - ragflow restart: on-failure volumes: esdata01: driver: local infinity_data: driver: local mysql_data: driver: local minio_data: driver: local redis_data: driver: local networks: ragflow: driver: bridge `
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#31788