2024-02-28 15:02:04 +08:00
|
|
|
# Version of Elastic products
|
|
|
|
STACK_VERSION=8.11.3
|
|
|
|
|
|
|
|
|
|
|
|
# Port to expose Elasticsearch HTTP API to the host
|
|
|
|
ES_PORT=1200
|
|
|
|
|
2024-06-06 13:19:26 +08:00
|
|
|
# Set the Elasticsearch password
|
|
|
|
ELASTIC_PASSWORD=infini_rag_flow
|
|
|
|
|
2024-02-28 15:02:04 +08:00
|
|
|
# Port to expose Kibana to the host
|
|
|
|
KIBANA_PORT=6601
|
|
|
|
|
|
|
|
# Increase or decrease based on the available host memory (in bytes)
|
2024-04-23 14:41:10 +08:00
|
|
|
|
|
|
|
MEM_LIMIT=8073741824
|
|
|
|
|
2024-02-28 15:02:04 +08:00
|
|
|
|
|
|
|
MYSQL_PASSWORD=infini_rag_flow
|
|
|
|
MYSQL_PORT=5455
|
|
|
|
|
2024-04-18 15:45:09 +08:00
|
|
|
# Port to expose minio to the host
|
|
|
|
MINIO_CONSOLE_PORT=9001
|
|
|
|
MINIO_PORT=9000
|
|
|
|
|
2024-03-05 16:33:47 +08:00
|
|
|
MINIO_USER=rag_flow
|
2024-02-28 15:02:04 +08:00
|
|
|
MINIO_PASSWORD=infini_rag_flow
|
|
|
|
|
2024-05-07 11:43:33 +08:00
|
|
|
REDIS_PASSWORD=infini_rag_flow
|
|
|
|
|
2024-02-28 15:02:04 +08:00
|
|
|
SVR_HTTP_PORT=9380
|
|
|
|
|
2024-06-07 09:09:38 +08:00
|
|
|
RAGFLOW_VERSION=dev
|
2024-04-19 18:19:15 +08:00
|
|
|
|
2024-03-05 12:08:41 +08:00
|
|
|
TIMEZONE='Asia/Shanghai'
|
|
|
|
|
2024-02-28 15:02:04 +08:00
|
|
|
######## 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
|