.env 931 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Version of Elastic products
  2. STACK_VERSION=8.11.3
  3. # Port to expose Elasticsearch HTTP API to the host
  4. ES_PORT=9201
  5. # Set the Elasticsearch password
  6. ELASTIC_PASSWORD=8IpWQfcZXXmRsIkX7+yy
  7. # Increase or decrease based on the available host memory (in bytes)
  8. MEM_LIMIT=8073741824
  9. MYSQL_PASSWORD=llmllmllm
  10. MYSQL_PORT=3336
  11. # Port to expose minio to the host
  12. MINIO_CONSOLE_PORT=9001
  13. MINIO_PORT=9000
  14. MINIO_USER=root
  15. MINIO_PASSWORD=llmllmllm
  16. REDIS_PORT=6389
  17. REDIS_PASSWORD=llmllmllm
  18. SVR_HTTP_PORT=8080
  19. SVR_HTTP_HOST='llm-app'
  20. TIMEZONE='Asia/Shanghai'
  21. #HF_ENDPOINT=https://hf-mirror.com
  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