12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Version of Elastic products
- STACK_VERSION=8.11.3
- # Port to expose Elasticsearch HTTP API to the host
- ES_PORT=9201
- # Set the Elasticsearch password
- ELASTIC_PASSWORD=8IpWQfcZXXmRsIkX7+yy
- # Increase or decrease based on the available host memory (in bytes)
- MEM_LIMIT=8073741824
- MYSQL_PASSWORD=llmllmllm
- MYSQL_PORT=3336
- # Port to expose minio to the host
- MINIO_CONSOLE_PORT=9001
- MINIO_PORT=9000
- MINIO_USER=root
- MINIO_PASSWORD=llmllmllm
- REDIS_PORT=6389
- REDIS_PASSWORD=llmllmllm
- SVR_HTTP_PORT=8080
- SVR_HTTP_HOST='llm-app'
- TIMEZONE='Asia/Shanghai'
- #HF_ENDPOINT=https://hf-mirror.com
- ######## OS setup for ES ###########
- # sysctl vm.max_map_count
- # sudo sysctl -w vm.max_map_count=262144
- # However, this change is not persistent and will be reset after a system reboot.
- # To make the change permanent, you need to update the /etc/sysctl.conf file.
- # Add or update the following line in the file:
- # vm.max_map_count=262144
|