GitHub user rondinellewalitte added a comment to the discussion: Firebird connection not possible
Hi @CTSchorsch , You are right — this error usually happens because the Firebird client library is missing inside the Docker container. To solve this, you need to install the package libfbclient2 (or the appropriate Firebird client library for your Linux distribution) inside your Superset Docker image. If you're using a Debian-based image, you can add this to your Dockerfile: RUN apt update && apt install -y libfbclient2 After that, rebuild your image and try the connection again. Let me know if you need help updating your Dockerfile or rebuilding your containers. GitHub link: https://github.com/apache/superset/discussions/29290#discussioncomment-13669958 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
