You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.env 869B

123456789101112131415161718192021222324252627282930313233343536
  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=4073741824
  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. SVR_HTTP_PORT=9380
  19. TIMEZONE='Asia/Shanghai'
  20. ######## OS setup for ES ###########
  21. # sysctl vm.max_map_count
  22. # sudo sysctl -w vm.max_map_count=262144
  23. # However, this change is not persistent and will be reset after a system reboot.
  24. # To make the change permanent, you need to update the /etc/sysctl.conf file.
  25. # Add or update the following line in the file:
  26. # vm.max_map_count=262144