You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: installation/linux/amazon-linux.md
+16-3Lines changed: 16 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,21 @@ Fluent Bit is distributed as **fluent-bit** package and is available for the lat
7
7
* x86\_64
8
8
* aarch64 / arm64v8
9
9
10
+
## Single line install
11
+
12
+
A simple installation script is provided to be used for most Linux targets. This will always install the most recent version released.
13
+
14
+
```bash
15
+
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
16
+
```
17
+
18
+
If this fails or for more details on the installation then please refer to the specific sections below.
19
+
10
20
## Configure Yum
11
21
12
22
We provide **fluent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _fluent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
@@ -27,6 +37,7 @@ note: we encourage you always enable the _gpgcheck_ for security reasons. All ou
27
37
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
36
47
37
48
The GPG Key fingerprint of the old key is:
49
+
38
50
```
39
51
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
40
52
```
41
-
Refer to the [supported platform documentation](./../supported-platforms.md) to see which platforms are supported in each release.
53
+
54
+
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
55
+
42
56
### Install
43
57
44
58
Once your repository is configured, run the following command to install it:
@@ -68,4 +82,3 @@ Redirecting to /bin/systemctl status fluent-bit.service
68
82
```
69
83
70
84
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/messages_ file.
Copy file name to clipboardExpand all lines: installation/linux/debian.md
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,20 @@
1
1
# Debian
2
2
3
-
Fluent Bit is distributed as **fluent-bit** package and is available for the latest \(and old\) stable Debian systems: Buster, Stretch and Jessie.
3
+
Fluent Bit is distributed as **fluent-bit** package and is available for the latest (and old) stable Debian systems: Buster, Stretch and Jessie.
4
+
5
+
## Single line install
6
+
7
+
A simple installation script is provided to be used for most Linux targets. This will always install the most recent version released.
8
+
9
+
```bash
10
+
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
11
+
```
12
+
13
+
If this fails or for more details on the installation then please refer to the specific sections below.
4
14
5
15
## Server GPG key
6
16
7
-
The first step is to add our server GPG key to your keyring, on that way you can get our signed packages.
8
-
Follow the official Debian wiki guidance: https://wiki.debian.org/DebianRepository/UseThirdParty#OpenPGP_Key_distribution
17
+
The first step is to add our server GPG key to your keyring, on that way you can get our signed packages. Follow the official Debian wiki guidance: https://wiki.debian.org/DebianRepository/UseThirdParty#OpenPGP\_Key\_distribution
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
25
35
26
36
The GPG Key fingerprint of the old key is:
37
+
27
38
```
28
39
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
29
40
```
30
-
Refer to the [supported platform documentation](./../supported-platforms.md) to see which platforms are supported in each release.
41
+
42
+
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
43
+
31
44
## Update your sources lists
32
45
33
-
On Debian, you need to add our APT server entry to your sources lists, please add the following content at bottom of your **/etc/apt/sources.list** file - ensure to set `CODENAME` to your specific [Debian release name](https://wiki.debian.org/DebianReleases#Production_Releases) (e.g. `bullseye` for Debian 11):
46
+
On Debian, you need to add our APT server entry to your sources lists, please add the following content at bottom of your **/etc/apt/sources.list** file - ensure to set `CODENAME` to your specific [Debian release name](https://wiki.debian.org/DebianReleases#Production\_Releases) (e.g. `bullseye` for Debian 11):
34
47
35
48
```bash
36
49
deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/debian/${CODENAME}${CODENAME} main
@@ -45,14 +58,14 @@ $ sudo apt-get update
45
58
```
46
59
47
60
{% hint style="info" %}
48
-
We recommend upgrading your system (```sudo apt-get upgrade```). This could avoid potential issues with expired certificates.
61
+
We recommend upgrading your system (`sudo apt-get upgrade`). This could avoid potential issues with expired certificates.
49
62
{% endhint %}
50
63
51
64
## Install Fluent Bit
52
65
53
66
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
54
67
55
-
```text
68
+
```
56
69
$ sudo apt-get install fluent-bit
57
70
```
58
71
@@ -79,4 +92,3 @@ sudo service fluent-bit status
79
92
```
80
93
81
94
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/syslog_ file.
Copy file name to clipboardExpand all lines: installation/linux/redhat-centos.md
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,22 +7,34 @@ Fluent Bit is distributed as **fluent-bit** package and is available for the lat
7
7
* x86\_64
8
8
* aarch64 / arm64v8
9
9
10
+
## Single line install
11
+
12
+
A simple installation script is provided to be used for most Linux targets. This will always install the most recent version released.
13
+
14
+
```bash
15
+
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
16
+
```
17
+
18
+
If this fails or for more details on the installation then please refer to the specific sections below.
19
+
10
20
## CentOS 8
21
+
11
22
CentOS 8 is now EOL so the default Yum repositories are unavailable.
12
23
13
24
Make sure to configure to use an appropriate mirror, for example:
25
+
14
26
```
15
27
$ sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \
16
28
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
17
29
```
18
30
19
-
An alternative is to use Rocky or Alma Linux which *should* be equivalent.
31
+
An alternative is to use Rocky or Alma Linux which _should_ be equivalent.
20
32
21
33
## Configure Yum
22
34
23
35
We provide **fluent-bit** through a Yum repository. In order to add the repository reference to your system, please add a new file called _fluent-bit.repo_ in _/etc/yum.repos.d/_ with the following content:
It is best practice to always enable the _gpgcheck_ and _repo_gpgcheck_ for security reasons.
36
-
We sign our repository metadata as well as all of our packages.
47
+
It is best practice to always enable the _gpgcheck_ and _repo\_gpgcheck_ for security reasons. We sign our repository metadata as well as all of our packages.
37
48
38
49
### Updated key from March 2022
39
50
40
51
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
49
61
50
62
The GPG Key fingerprint of the old key is:
63
+
51
64
```
52
65
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
53
66
```
54
-
Refer to the [supported platform documentation](./../supported-platforms.md) to see which platforms are supported in each release.
67
+
68
+
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
69
+
55
70
### Install
56
71
57
72
Once your repository is configured, run the following command to install it:
@@ -81,4 +96,3 @@ Redirecting to /bin/systemctl status fluent-bit.service
81
96
```
82
97
83
98
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/messages_ file.
Copy file name to clipboardExpand all lines: installation/linux/ubuntu.md
+19-7Lines changed: 19 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,30 @@
2
2
3
3
Fluent Bit is distributed as **fluent-bit** package and is available for the latest stable Ubuntu system: Focal Fossa.
4
4
5
+
## Single line install
6
+
7
+
A simple installation script is provided to be used for most Linux targets. This will always install the most recent version released.
8
+
9
+
```bash
10
+
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
11
+
```
12
+
13
+
If this fails or for more details on the installation then please refer to the specific sections below.
14
+
5
15
## Server GPG key
6
16
7
-
The first step is to add our server GPG key to your keyring to ensure you can get our signed packages.
8
-
Follow the official Debian wiki guidance: https://wiki.debian.org/DebianRepository/UseThirdParty#OpenPGP_Key_distribution
17
+
The first step is to add our server GPG key to your keyring to ensure you can get our signed packages. Follow the official Debian wiki guidance: https://wiki.debian.org/DebianRepository/UseThirdParty#OpenPGP\_Key\_distribution
From the 1.9.0 and 1.8.15 releases please note that the GPG key has been updated at [https://packages.fluentbit.io/fluentbit.key](https://packages.fluentbit.io/fluentbit.key) so ensure this new one is added.
The previous key is still available at [https://packages.fluentbit.io/fluentbit-legacy.key](https://packages.fluentbit.io/fluentbit-legacy.key) and may be required to install previous versions.
24
35
25
36
The GPG Key fingerprint of the old key is:
37
+
26
38
```
27
39
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
28
40
```
29
-
Refer to the [supported platform documentation](./../supported-platforms.md) to see which platforms are supported in each release.
41
+
42
+
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
43
+
30
44
## Update your sources lists
31
45
32
46
On Ubuntu, you need to add our APT server entry to your sources lists, please add the following content at bottom of your **/etc/apt/sources.list** file - ensure to set `CODENAME` to your specific [Ubuntu release name](https://wiki.ubuntu.com/Releases) (e.g. `focal` for Ubuntu 20.04):
@@ -44,15 +58,14 @@ sudo apt-get update
44
58
```
45
59
46
60
{% hint style="info" %}
47
-
We recommend upgrading your system (```sudo apt-get upgrade```). This could avoid potential issues with expired certificates.
61
+
We recommend upgrading your system (`sudo apt-get upgrade`). This could avoid potential issues with expired certificates.
48
62
{% endhint %}
49
63
50
-
51
64
## Install Fluent Bit
52
65
53
66
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
54
67
55
-
```text
68
+
```
56
69
sudo apt-get install fluent-bit
57
70
```
58
71
@@ -79,4 +92,3 @@ sudo service fluent-bit status
79
92
```
80
93
81
94
The default configuration of **fluent-bit** is collecting metrics of CPU usage and sending the records to the standard output, you can see the outgoing data in your _/var/log/syslog_ file.
0 commit comments