Docs Connect Install and Upgrade Build from Source Build or Upgrade from Source You can build Redpanda Connect in two ways: Standard build: Suitable for most users. Does not require cgo. Does not include the TigerBeetle CDC input connector. cgo-enabled build: Required only if you need the TigerBeetle CDC input connector. Install from source Ensure you have Go installed on your system. You can download it from the official Go website. Clone the Redpanda Connect repository: git clone https://github.com/redpanda-data/connect.git cd connect Build the binary (choose one): Build type Build command Standard (no cgo, most users) go build -o redpanda-connect ./cmd/redpanda-connect cgo-enabled (TigerBeetle CDC support) CGO_ENABLED=1 go build -o redpanda-connect ./cmd/redpanda-connect Move the binary to a directory in your PATH (for example, /usr/local/bin): sudo mv redpanda-connect /usr/local/bin/ Verify the installation: redpanda-connect --version You should see a version. Upgrade a source build Navigate to your existing clone of the repository: cd connect Fetch the latest tags and check out the version you want: git fetch --all git checkout v4.65.0 Rebuild the binary (choose one): Build type Build command Standard (no cgo, most users) go build -o redpanda-connect ./cmd/redpanda-connect cgo-enabled (TigerBeetle CDC support) CGO_ENABLED=1 go build -o redpanda-connect ./cmd/redpanda-connect Replace the previous binary and verify: sudo mv redpanda-connect /usr/local/bin/ redpanda-connect --version After upgrading (or downgrading), you must restart a pipeline to use features in the Redpanda Connect version you have deployed. Uninstall To uninstall Redpanda Connect, remove the installed binary: sudo rm /usr/local/bin/redpanda-connect This removes the Redpanda Connect binary from your system. Next steps Explore the available connectors in the catalog. Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution 🎉 Thanks for your feedback! Prebuilt Binary Configuration