Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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