-
Notifications
You must be signed in to change notification settings - Fork 542
consolidate install/platforms/requirements info #2172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
alexakreizinger
merged 4 commits into
master
from
alexakreizinger/sc-146101/fb-combine-packages-and-supported-platforms
Nov 14, 2025
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
dede7b9
consolidate install/platforms/requirements info
alexakreizinger 077118f
move/rework intro sentence
alexakreizinger 31c1e55
fix redirect formatting
alexakreizinger 5d3e13a
Merge branch 'master' into alexakreizinger/sc-146101/fb-combine-packa…
alexakreizinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,32 +1,64 @@ | ||
| # Download Fluent Bit for supported platforms | ||
|
|
||
| Fluent Bit supports the following operating systems and architectures: | ||
|
|
||
| | Operating System | Distribution | Architectures | | ||
| | :--- | :--- | :--- | | ||
| | Linux | [Amazon Linux 2023](downloads/linux/amazon-linux.md) | x86_64, Arm64v8 | | ||
| | | [Amazon Linux 2](downloads/linux/amazon-linux.md) | x86_64, Arm64v8 | | ||
| | | [CentOS 9 Stream](downloads/linux/redhat-centos.md) | x86_64, Arm64v8 | | ||
| | | [CentOS 8](downloads/linux/redhat-centos.md) | x86_64, Arm64v8 | | ||
| | | [CentOS 7](downloads/linux/redhat-centos.md) | x86_64, Arm64v8 | | ||
| | | [Rocky Linux 8](downloads/linux/alma-rocky.md) | x86_64, Arm64v8 | | ||
| | | [Rocky Linux 9](downloads/linux/alma-rocky.md) | x86_64, Arm64v8 | | ||
| | | [Alma Linux 8](downloads/linux/alma-rocky.md) | x86_64, Arm64v8 | | ||
| | | [Alma Linux 9](downloads/linux/alma-rocky.md) | x86_64, Arm64v8 | | ||
| | | [Debian 12 (Bookworm)](downloads/linux/debian.md) | x86_64, Arm64v8 | | ||
| | | [Debian 11 (Bullseye)](downloads/linux/debian.md) | x86_64, Arm64v8 | | ||
| | | [Debian 10 (Buster)](downloads/linux/debian.md) | x86_64, Arm64v8 | | ||
| | | [Ubuntu 24.04 (Noble Numbat)](downloads/linux/ubuntu.md) | x86_64, Arm64v8 | | ||
| | | [Ubuntu 22.04 (Jammy Jellyfish)](downloads/linux/ubuntu.md) | x86_64, Arm64v8 | | ||
| | | [Raspbian 12 (Bookworm)](downloads/linux/raspbian-raspberry-pi.md) | Arm32v7 | | ||
| | macOS | * | x86_64, Apple M1 | | ||
| | Windows | [Windows Server 2019](downloads/windows.md) | x86_64, x86 | | ||
| | | [Windows 10 1903](downloads/windows.md) | x86_64, x86 | | ||
|
|
||
| From an architecture support perspective, Fluent Bit is fully functional on x86_64, Arm64v8, and Arm32v7 based processors. | ||
|
|
||
| Fluent Bit can work also on macOS and Berkeley Software Distribution (BSD) systems, but not all plugins will be available on all platforms. | ||
|
|
||
| Official support is based on community demand. Fluent Bit might run on older operating systems, but must be built from source, or using custom packages from [enterprise providers](https://fluentbit.io/enterprise). | ||
|
|
||
| Fluent Bit is supported for Linux on IBM Z (s390x) environments with some restrictions, but only container images are provided for these targets officially. | ||
|
|
||
| # Download and install Fluent Bit | ||
|
|
||
| <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=e9732f9c-44a4-46d3-ab87-86138455c698" /> | ||
alexakreizinger marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| Fluent Bit is compatible with most x86-based, x86_64-based, arm32v7-based, and arm64v8-based systems. | ||
|
|
||
| ## Requirements | ||
|
|
||
| The Fluent Bit build process requires the following components: | ||
|
|
||
| - Compiler: GCC or clang | ||
| - CMake | ||
| - Flex and Bison: Required for [Stream Processor](../stream-processing/overview) or [Record Accessor](../administration/configuring-fluent-bit/classic-mode/record-accessor) | ||
| - Libyaml development headers and libraries | ||
|
Check warning on line 15 in installation/downloads.md
|
||
|
|
||
| Certain features of Fluent Bit depend on additional third-party components. For example, output plugins with special backend libraries like Kafka include those libraries in the main source code repository. | ||
|
|
||
| ## Build from source code | ||
|
|
||
| You can [build and install Fluent Bit from its source code](../installation/downloads/source). There are also platform-specific guides for building Fluent Bit from source on [macOS](../installation/downloads/macos#compile-from-source) and [Windows](../installation/downloads/windows#compile-from-source). | ||
|
|
||
| ## Supported platforms and packages | ||
|
|
||
| To install Fluent Bit from one of the available packages, use the installation method for your chosen platform. | ||
|
|
||
| ### Container deployment | ||
|
|
||
| Fluent Bit is available for the following container deployments: | ||
|
|
||
| - [Containers on AWS](../installation/downloads/aws-container) | ||
| - [Docker](../installation/downloads/docker) | ||
| - [Kubernetes](../installation/downloads/kubernetes) | ||
|
|
||
| ### Linux | ||
|
|
||
| Fluent Bit is available on [Linux](../installation/downloads/linux), including the following distributions: | ||
|
|
||
| - [Amazon Linux](../installation/downloads/linux/amazon-linux) | ||
| - [Buildroot embedded Linux](../installation/downloads/linux/buildroot-embedded-linux) | ||
| - [Debian](../installation/downloads/linux/debian) | ||
| - [Raspbian and Raspberry Pi](../installation/downloads/linux/raspbian-raspberry-pi) | ||
| - [Red Hat and CentOS](../installation/downloads/linux/redhat-centos) | ||
| - [Rocky Linux and Alma Linux](../installation/downloads/linux/alma-rocky) | ||
| - [Ubuntu](../installation/downloads/linux/ubuntu) | ||
| - [Yocto embedded Linux](../installation/downloads/linux/yocto-embedded-linux) | ||
|
|
||
| ### macOS | ||
|
|
||
| Fluent Bit is available on [macOS](../installation/downloads/macos). | ||
|
|
||
| ### Windows | ||
|
|
||
| Fluent Bit is available on [Windows](../installation/downloads/windows). | ||
|
|
||
| ### Other platforms | ||
|
|
||
| Official support is based on community demand. Fluent Bit might run on older operating systems, but must be built from source or using custom packages. | ||
|
|
||
| Fluent Bit can run on Berkeley Software Distribution (BSD) systems and IBM Z Linux (s390x) systems with restrictions. Not all plugins and filters are supported. | ||
|
|
||
| ## Enterprise providers | ||
|
|
||
| Fluent Bit packages are also provided by [enterprise providers](https://fluentbit.io/enterprise) for older end-of-life versions, Unix systems, or for additional support and features including aspects (such as CVE backporting). | ||
|
Check warning on line 64 in installation/downloads.md
|
||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.