Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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