Hello everybody, I have one issue here and lookin...
# help
p
Hello everybody, I have one issue here and looking for help. I followed tutorial from https://docs.lakefs.io/howto/deploy/onprem.html, and run postgres and minio server successfully. But every time I try to build lakefs service the keep occurring {"error":"operation error STS: GetCallerIdentity, https response error StatusCode: 403, RequestID: 346eaa9a-da2e-4728-93ba-2d14ac87132f, api error InvalidClientTokenId: The security token included in the request is invalid.","file":"lakeFS/pkg/cloud/aws/metadata.go:81","func":"pkg/cloud/aws(*MetadataProvider).GetMetadata.func1","level":"warning","msg":"Tried to to get AWS account ID for BI","time":"2024-08-02T180232+08:00"}. I tried using docker compose and directly run in host terminal (ubuntu 22.04), but get the same error msg. Here is my config.yaml and run
lakefs run -c config.yaml
Copy code
---
logging:
  format: json
  level: info
  output: "-"

database:
  type: "postgres"
  postgres:
    connection_string: "<postgresql://user:password@localhost:5432/mlopsdb?sslmode=disable>"

auth:
  encrypt:
    secret_key: "XXXXXX"

blockstore:
  type: s3
  s3:
    force_path_style: true
    endpoint: <http://localhost:9000>
    discover_bucket_region: false
    region: us-east-1
    credentials:
      access_key_id: ${minio_admin_access_key}
      secret_access_key: ${minio_admin_secret_access_key}
I pretty sure that access_key and secret_access_key is correct and I used docker network to make sure http://localhost:9000 is connectable while using docker container.
n
Hi @Patrick Hsu, You can ignore this warning message. Is the lakeFS server up after running the docker?