本地部署 RAGFlow - 修改默认端口

本地部署 RAGFlow - 修改默认端口

    • [1. 前提条件](#1. 前提条件)
    • [2. 部署 RAGFlow](#2. 部署 RAGFlow)

1. 前提条件

确保 vm.max_map_count 不小于 262144:

如需确认 vm.max_map_count 的大小:

复制代码
sysctl vm.max_map_count

如果 vm.max_map_count 的值小于 262144,可以进行重置:

复制代码
# 这里我们设为 262144:
sudo sysctl -w vm.max_map_count=262144

你的改动会在下次系统重启时被重置。如果希望做永久改动,还需要在 /etc/sysctl.conf 文件里把 vm.max_map_count 的值再相应更新一遍:

复制代码
vm.max_map_count=262144

2. 部署 RAGFlow

克隆仓库:

复制代码
git clone https://github.com/infiniflow/ragflow.git
cd ragflow/docker

修改默认端口(为了不与Dify和Langfush冲突)和默认镜像地址(解决国内网络访问Docker镜像网站问题),这里使用git diff命令显示修改的地方。

复制代码
git diff docker/.env

diff --git a/docker/.env b/docker/.env
index 2b0b5b8b..db206212 100644
--- a/docker/.env
+++ b/docker/.env
@@ -40,7 +40,7 @@ INFINITY_HOST=infinity
 # Port to expose Infinity API to the host
 INFINITY_THRIFT_PORT=23817
 INFINITY_HTTP_PORT=23820
-INFINITY_PSQL_PORT=5432
+INFINITY_PSQL_PORT=5434

 # The password for MySQL.
 MYSQL_PASSWORD=infini_rag_flow
@@ -53,13 +53,13 @@ MYSQL_DBNAME=rag_flow
 MYSQL_PORT=5455

 # The hostname where the MinIO service is exposed
-MINIO_HOST=minio
+MINIO_HOST=minio_ragflow
 # The port used to expose the MinIO console interface to the host machine,
 # allowing EXTERNAL access to the web-based console running inside the Docker container.
-MINIO_CONSOLE_PORT=9001
+MINIO_CONSOLE_PORT=9003
 # The port used to expose the MinIO API service to the host machine,
 # allowing EXTERNAL access to the MinIO object storage service running inside the Docker container.
-MINIO_PORT=9000
+MINIO_PORT=9019
 # The username for MinIO.
 # When updated, you must revise the `minio.user` entry in service_conf.yaml accordingly.
 MINIO_USER=rag_flow
@@ -68,10 +68,10 @@ MINIO_USER=rag_flow
 MINIO_PASSWORD=infini_rag_flow

 # The hostname where the Redis service is exposed
-REDIS_HOST=redis
+REDIS_HOST=redis_ragflow
 # The port used to expose the Redis service to the host machine,
 # allowing EXTERNAL access to the Redis service running inside the Docker container.
-REDIS_PORT=6379
+REDIS_PORT=6381
 # The password for Redis.
 REDIS_PASSWORD=infini_rag_flow

git diff docker/docker-compose.yml

diff --git a/docker/.env b/docker/.env
index 2b0b5b8b..db206212 100644
--- a/docker/.env
+++ b/docker/.env
@@ -40,7 +40,7 @@ INFINITY_HOST=infinity
 # Port to expose Infinity API to the host
 INFINITY_THRIFT_PORT=23817
 INFINITY_HTTP_PORT=23820
-INFINITY_PSQL_PORT=5432
+INFINITY_PSQL_PORT=5434

 # The password for MySQL.
 MYSQL_PASSWORD=infini_rag_flow
@@ -53,13 +53,13 @@ MYSQL_DBNAME=rag_flow
 MYSQL_PORT=5455

 # The hostname where the MinIO service is exposed
-MINIO_HOST=minio
+MINIO_HOST=minio_ragflow
 # The port used to expose the MinIO console interface to the host machine,
 # allowing EXTERNAL access to the web-based console running inside the Docker container.
-MINIO_CONSOLE_PORT=9001
+MINIO_CONSOLE_PORT=9003
 # The port used to expose the MinIO API service to the host machine,
 # allowing EXTERNAL access to the MinIO object storage service running inside the Docker container.
-MINIO_PORT=9000
+MINIO_PORT=9019
 # The username for MinIO.
 # When updated, you must revise the `minio.user` entry in service_conf.yaml accordingly.
 MINIO_USER=rag_flow
@@ -68,10 +68,10 @@ MINIO_USER=rag_flow
 MINIO_PASSWORD=infini_rag_flow

 # The hostname where the Redis service is exposed
-REDIS_HOST=redis
+REDIS_HOST=redis_ragflow
 # The port used to expose the Redis service to the host machine,
 # allowing EXTERNAL access to the Redis service running inside the Docker container.
-REDIS_PORT=6379
+REDIS_PORT=6381
 # The password for Redis.
 REDIS_PASSWORD=infini_rag_flow

(base) root@DESKTOP-31CKLQ1:/u01/workspace/ragflow-main/docker# git diff docker-compose.yml
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
index 676f167d..e7036643 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -6,12 +6,12 @@ services:
     depends_on:
       mysql:
         condition: service_healthy
-    image: ${RAGFLOW_IMAGE}
+    image: docker.1ms.run/${RAGFLOW_IMAGE}
     container_name: ragflow-server
     ports:
       - ${SVR_HTTP_PORT}:9380
-      - 80:80
-      - 443:443
+      - 50080:80
+      - 50443:443
     volumes:
       - ./ragflow-logs:/ragflow/logs
       - ./nginx/ragflow.conf:/etc/nginx/conf.d/ragflow.conf

git diff docker/docker-compose-base.yml

diff --git a/docker/docker-compose-base.yml b/docker/docker-compose-base.yml
index 93804d5a..abf7e9e4 100644
--- a/docker/docker-compose-base.yml
+++ b/docker/docker-compose-base.yml
@@ -3,7 +3,7 @@ services:
     container_name: ragflow-es-01
     profiles:
       - elasticsearch
-    image: elasticsearch:${STACK_VERSION}
+    image: docker.1ms.run/elasticsearch:${STACK_VERSION}
     volumes:
       - esdata01:/usr/share/elasticsearch/data
     ports:
@@ -39,7 +39,7 @@ services:
     container_name: ragflow-infinity
     profiles:
       - infinity
-    image: infiniflow/infinity:v0.6.0-dev3
+    image: docker.1ms.run/infiniflow/infinity:v0.6.0-dev3
     volumes:
       - infinity_data:/var/infinity
       - ./infinity_conf.toml:/infinity_conf.toml
@@ -68,7 +68,7 @@ services:

   mysql:
     # mysql:5.7 linux/arm64 image is unavailable.
-    image: mysql:8.0.39
+    image: docker.1ms.run/mysql:8.0.39
     container_name: ragflow-mysql
     env_file: .env
     environment:
@@ -95,8 +95,8 @@ services:
       retries: 3
     restart: on-failure

-  minio:
-    image: quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
+  minio_ragflow:
+    image: docker.1ms.run/minio/minio:RELEASE.2023-12-20T01-00-02Z
     container_name: ragflow-minio
     command: server --console-address ":9001" /data
     ports:
@@ -108,21 +108,21 @@ services:
       - MINIO_ROOT_PASSWORD=${MINIO_PASSWORD}
       - TZ=${TIMEZONE}
     volumes:
-      - minio_data:/data
+      - minio_ragflow_data:/data
     networks:
       - ragflow
     restart: on-failure

-  redis:
+  redis_ragflow:
     # swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/valkey/valkey:8
-    image: valkey/valkey:8
+    image: docker.1ms.run/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
+      - redis_ragflow_data:/data
     networks:
       - ragflow
     restart: on-failure
@@ -136,9 +136,9 @@ volumes:
     driver: local
   mysql_data:
     driver: local
-  minio_data:
+  minio_ragflow_data:
     driver: local
-  redis_data:
+  redis_ragflow_data:
     driver: local

启动,

复制代码
docker compose -p ragflow -f docker-compose.yml up -d

一定要指定 -p ragflow,否则和Dify项目冲突,因为他们的docker-compose.yml文件都在docker目录下面。

打开 http://ip:50080 进行访问。

完结!

相关推荐
忧郁蓝调264 小时前
RAGFlow部署与使用(开源本地知识库管理系统,包括kibana配置)
人工智能·开源·大模型·github·知识库·rag·ragflow
恩博同学3 天前
DeepSeek linux服务器(CentOS)部署命令笔记
linux·centos·本地部署·deepseek
cooldream20097 天前
基于深度文档理解的开源 RAG 引擎RAGFlow的介绍和安装
rag·ragflow·大模型基础
XZY__one7 天前
deepseek 本地部署
本地部署·deepseek
闫利朋8 天前
ubuntu22.04安装RAGFlow配合DeepSeek搭建本地知识库
知识库·ollama·ragflow·deekseek
AIGC龙哥8 天前
Stable Diffusion教程|快速入门SD绘画原理与安装
stable diffusion·aigc·ai绘画·sd·安装包·本地部署·炼丹师
我叫安查查9 天前
一文对比RAGFLOW和Open WebUI【使用场景参考】
人工智能·ragflow·open webui
伪_装16 天前
Linux服务器部署Deepseek、Dify、RAGflow实战教程
linux·服务器·docker·huggingface·dify·ollama·ragflow
大师兄666818 天前
【Mac电脑本地部署Deepseek-r1:详细教程与Openwebui配置指南】
深度学习·本地部署·ai模型·deepseek·mac部署·ollama模型·openwebui 配置教程