Skip to content

Commit

Permalink
Merge pull request #21 from tiwater/16-feature-request-setup-account-…
Browse files Browse the repository at this point in the history
…info-for-es-and-kibana

feat: config default password, make sure BLOCK ports on firewall
  • Loading branch information
shaoyie authored Jun 4, 2024
2 parents f181e7d + 83e76e3 commit 06399da
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions docker/.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,33 @@ CLUSTER_NAME=rag_flow
LICENSE=basic
#LICENSE=trial
# Password for the 'elastic' user (at least 6 characters)
ELASTIC_PASSWORD=
ELASTIC_PASSWORD=penless_rag_flow
# Port to expose Elasticsearch HTTP API to the host
ES_PORT=9200

# Port to expose Kibana to the host
KIBANA_PORT=5601

# Password for the 'kibana_system' user (at least 6 characters)
KIBANA_PASSWORD=
KIBANA_PASSWORD=penless_rag_flow

# Increase or decrease based on the available host memory (in bytes)
MEM_LIMIT=1073741824

MYSQL_PASSWORD=
MYSQL_PASSWORD=penless_rag_flow
MYSQL_PORT=5455
# Port to expose minio to the host
MINIO_CONSOLE_PORT=9001
MINIO_PORT=9000

MINIO_USER=rag_flow
MINIO_PASSWORD=
MINIO_PASSWORD=penless_rag_flow

REDIS_PASSWORD=
REDIS_PASSWORD=penless_rag_flow

SVR_HTTP_PORT=9380

RAGFLOW_VERSION=v0.6.0
RAGFLOW_VERSION=0.6.0

POCKETBASE_HOST=https://luban.ticosdev.cc

Expand Down
8 changes: 4 additions & 4 deletions docker/service_conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ ragflow:
mysql:
name: 'rag_flow'
user: 'root'
password: ''
password: 'penless_rag_flow'
host: 'mysql'
port: 3306
max_connections: 100
stale_timeout: 30
minio:
user: 'rag_flow'
password: ''
password: 'penless_rag_flow'
host: 'minio:9000'
es:
hosts: 'https://es01:9200'
user: 'elastic'
password: ''
password: 'penless_rag_flow'
redis:
db: 1
password: ''
password: 'penless_rag_flow'
host: 'redis:6379'
user_default_llm:
factory: 'ZHIPU-AI'
Expand Down

0 comments on commit 06399da

Please sign in to comment.