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
+34-27Lines changed: 34 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,35 @@
2
2
3
3
## Install on Amazon Linux
4
4
5
-
Fluent Bit is distributed as **fluent-bit** package and is available for the latest Amazon Linux 2 and Amazon Linux 2023.
6
-
The following architectures are supported
5
+
Fluent Bit is distributed as the `fluent-bit` package and is available for the latest
6
+
Amazon Linux 2 and Amazon Linux 2023. The following architectures are supported
7
7
8
-
* x86\_64
9
-
* aarch64 / arm64v8
8
+
- x86_64
9
+
- aarch64 / arm64v8
10
+
11
+
Amazon Linux 2022 is no longer supported.
10
12
11
13
## Single line install
12
14
13
-
A simple installation script is provided to be used for most Linux targets.
14
-
This will always install the most recent version released.
15
+
Fluent Bit provides an installation script to use for most Linux targets.
16
+
This will always install the most recently released version.
15
17
16
-
```bash
18
+
```bash copy
17
19
curl https://raw.githubusercontent.com/fluent/fluent-bit/master/install.sh | sh
18
20
```
19
21
20
-
This is purely a convenience helper and should always be validated prior to use.
21
-
The recommended secure deployment approach is to follow the instructions below.
22
-
23
-
### Amazon Linux 2022
24
-
25
-
Amazon Linux 2022 was previously supported but is removed since it became GA Amazon Linux 2023
22
+
This is a convenience helper and should always be validated prior to use.
23
+
The recommended secure deployment approach is to use the following instructions:
26
24
27
25
## Configure Yum
28
26
29
-
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
+
The `fluent-bit` is provided through a Yum repository. To add the repository
28
+
reference to your system, add a new file called `fluent-bit.repo` in
Note: we encourage you always enable the _gpgcheck_ for security reasons. All our packages are signed.
53
+
You should always enable `gpgcheck` for security reasons. All Fluent Bit packages
54
+
are signed.
54
55
55
56
### Updated key from March 2022
56
57
57
-
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.
58
+
For the 1.9.0 and 1.8.15 and later releases, the
59
+
[GPG key has been updated](https://packages.fluentbit.io/fluentbit.key). Ensure
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.
69
+
The previous key is [still available](https://packages.fluentbit.io/fluentbit-legacy.key)
70
+
and might be required to install previous versions.
67
71
68
72
The GPG Key fingerprint of the old key is:
69
73
70
74
```text
71
75
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
72
76
```
73
77
74
-
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
78
+
Refer to the [supported platform documentation](../supported-platforms.md) to see
79
+
which platforms are supported in each release.
75
80
76
81
### Install
77
82
78
-
Once your repository is configured, run the following command to install it:
83
+
1. After your repository is configured, run the following command to install it:
79
84
80
-
```bash
81
-
sudo yum install fluent-bit
82
-
```
85
+
```bash copy
86
+
sudo yum install fluent-bit
87
+
```
83
88
84
-
Now the following step is to instruct _systemd_ to enable the service:
89
+
1. Instruct `systemd` to enable the service:
85
90
86
-
```bash
91
+
```bash copy
87
92
sudo systemctl start fluent-bit
88
93
```
89
94
@@ -100,4 +105,6 @@ $ systemctl status fluent-bit
100
105
...
101
106
```
102
107
103
-
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.
108
+
The default Fluent Bit configuration collect metrics of CPU usage and sends the
109
+
records to the standard output. You can see the outgoing data in your
0 commit comments