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 895B

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