您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Version of Elastic products
  2. STACK_VERSION=8.11.3
  3. # Port to expose Elasticsearch HTTP API to the host
  4. ES_PORT=1200
  5. # Set the Elasticsearch password
  6. ELASTIC_PASSWORD=infini_rag_flow
  7. # Port to expose Kibana to the host
  8. KIBANA_PORT=6601
  9. KIBANA_USER=rag_flow
  10. KIBANA_PASSWORD=infini_rag_flow
  11. # Increase or decrease based on the available host memory (in bytes)
  12. MEM_LIMIT=8073741824
  13. MYSQL_PASSWORD=infini_rag_flow
  14. MYSQL_PORT=5455
  15. # Port to expose minio to the host
  16. MINIO_CONSOLE_PORT=9001
  17. MINIO_PORT=9000
  18. MINIO_USER=rag_flow
  19. MINIO_PASSWORD=infini_rag_flow
  20. REDIS_PORT=6379
  21. REDIS_PASSWORD=infini_rag_flow
  22. SVR_HTTP_PORT=9380
  23. RAGFLOW_VERSION=dev
  24. TIMEZONE='Asia/Shanghai'
  25. ######## OS setup for ES ###########
  26. # sysctl vm.max_map_count
  27. # sudo sysctl -w vm.max_map_count=262144
  28. # However, this change is not persistent and will be reset after a system reboot.
  29. # To make the change permanent, you need to update the /etc/sysctl.conf file.
  30. # Add or update the following line in the file:
  31. # vm.max_map_count=262144