ragflow 网页不断冻结,

e37o9pze  于 2个月前  发布在  其他
关注(0)|答案(5)|浏览(89)

Describe your problem

When I run the command "docker compose -f docker-compose-CN.yml up -d", the Docker logs will remain in the following state indefinitely.

When I log in to the corresponding website to register an account, it will always get stuck. The corresponding web page is as follows.

What is the cause of this situation?

ogsagwnx

ogsagwnx1#

嘿,我是新来的,但我会尽力帮助。
Docker镜像是否已经下载完成?

xurqigkl

xurqigkl2#

我已经将模型下载到本地机器,并执行了命令 "docker compose -f docker-compose-CN.yml up -d"。出现了异常:

vkc1a9a2

vkc1a9a23#

它说无法连接到您的ES集群,我的猜测是您可能设置了错误的环境。

抱歉如果这很烦人,但您是否检查了以下内容:

  • 您的Python版本是什么
  • 您是否尝试过按照说明中的步骤删除并重新启动(不要忘记使用chmod +x ./entrypoint.sh命令)

日志还显示API问题,您是否正确编辑了service_conf.yaml文件?

3xiyfsfu

3xiyfsfu4#

这是一个RTFM的情况吗?哈哈
https://github.com/infiniflow/ragflow/tree/main?tab=readme-ov-file#-configurations
"
当涉及到系统配置时,您需要管理以下文件:

[.env](https://github.com/infiniflow/ragflow/blob/main/docker/.env): Keeps the fundamental setups for the system, such as SVR_HTTP_PORT, MYSQL_PASSWORD, and MINIO_PASSWORD.
[service_conf.yaml](https://github.com/infiniflow/ragflow/blob/main/docker/service_conf.yaml): Configures the back-end services.
[docker-compose.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose.yml): The system relies on [docker-compose.yml](https://github.com/infiniflow/ragflow/blob/main/docker/docker-compose.yml) to start up.

您必须确保对 .env 文件的更改与 service_conf.yaml 文件中的设置保持一致。

The [./docker/README](https://github.com/infiniflow/ragflow/blob/main/docker/README.md) file provides a detailed description of the environment settings and service configurations, and you are REQUIRED to ensure that all environment settings listed in the [./docker/README](https://github.com/infiniflow/ragflow/blob/main/docker/README.md) file are aligned with the corresponding configurations in the [service_conf.yaml](https://github.com/infiniflow/ragflow/blob/main/docker/service_conf.yaml) file.

要更新默认的HTTP服务端口(80),请转到 docker-compose.yml 并将80:80更改为<YOUR_SERVING_PORT>:80。

Updates to all system configurations require a system reboot to take effect:

$ docker-compose up -d

"

xmjla07d

xmjla07d5#

我已经将模型下载到本地机器,并执行了命令 "docker compose -f docker-compose-CN.yml up -d"。出现了异常:

$ docker ps (If it restarting all the time, please refer to the README.md)

91220e3285dd   docker.elastic.co/elasticsearch/elasticsearch:8.11.3   "/bin/tini -- /usr/l…"   11 hours ago   Up 11 hours (healthy)     9300/tcp, 0.0.0.0:3101->9200/tcp, :::3101->9200/tcp           ragflow-es-01

如果您正在使用Docker,请检查docker/service_conf.yml,这部分应该设置正确。

es:
  hosts: 'http://es01:9200'

如果您在Docker之外运行,请检查conf/service_conf.yml

相关问题