hi, it’s a super starter question but I’m trying t...
# troubleshoot
s
hi, it’s a super starter question but I’m trying to connect datahub to a redshift which is portforwarded to my local via ssh tunnel. I’ve tried running the crawler and it’s failing to connect, for my localhost I’ve tried to put • localhost • host IP • container IP • host.docker.internal in the UI. In the datahub’s action container I can connect using host.docker.internal but not when I issue a crawl job
d
You can add this sslmode: prefer to your ingestion recipe the following way:
Copy code
config:
    # Coordinates
    host_port: localhost:5439
    database: dev
    options:
      connect_args:
        sslmode: prefer
s
oh thanks for this @dazzling-judge-80093 🙂
it’s working