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
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.
33
+
For releases 1.9.0 and 1.8.15 and later, the
34
+
[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.
44
+
The previous key is [still available](https://packages.fluentbit.io/fluentbit-legacy.key)
45
+
and might be required to install previous versions.
39
46
40
47
The GPG Key fingerprint of the old key is:
41
48
42
49
```text
43
50
F209 D876 2A60 CD49 E680 633B 4FF8 368B 6EA0 722A
44
51
```
45
52
46
-
Refer to the [supported platform documentation](../supported-platforms.md) to see which platforms are supported in each release.
53
+
Refer to the [supported platform documentation](../supported-platforms.md) to see
54
+
which platforms are supported in each release.
47
55
48
56
## Update your sources lists
49
57
50
-
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):
58
+
On Ubuntu, you need to add the Fluent Bit APT server entry to your sources lists.
59
+
Add the following content at bottom of your `/etc/apt/sources.list` file. Ensure
60
+
`CODENAME` is set to your specific [Ubuntu release name](https://wiki.ubuntu.com/Releases).
61
+
For example, `focal` for Ubuntu 20.04.
51
62
52
63
```bash
53
64
deb [signed-by=/usr/share/keyrings/fluentbit-keyring.gpg] https://packages.fluentbit.io/ubuntu/${CODENAME}${CODENAME} main
54
65
```
55
66
56
67
### Update your repositories database
57
68
58
-
Now let your system update the _apt_ database:
69
+
Update the `apt` database on your system:
59
70
60
71
```bash
61
72
sudo apt-get update
62
73
```
63
74
64
75
{% hint style="info" %}
65
-
We recommend upgrading your system (`sudo apt-get upgrade`). This could avoid potential issues with expired certificates.
66
-
{% endhint %}
76
+
Fluent Bit recommends upgrading your system to avoid potential issues
77
+
with expired certificates:
67
78
68
-
{% hint style="info" %}
69
-
If you have the following error "Certificate verification failed", you might want to check if the package `ca-certificates` is properly installed (`sudo apt-get install ca-certificates`).
79
+
`sudo apt-get upgrade`
80
+
81
+
82
+
If you receive the error `Certificate verification failed`, check if the package
83
+
`ca-certificates` is properly installed:
84
+
85
+
`sudo apt-get install ca-certificates`
70
86
{% endhint %}
71
87
72
88
## Install Fluent Bit
73
89
74
-
Using the following _apt-get_ command you are able now to install the latest _fluent-bit_:
90
+
1. Use the following `apt-get` command to install the latest Fluent Bit:
75
91
76
-
```text
77
-
sudo apt-get install fluent-bit
78
-
```
92
+
```bash copy
93
+
sudo apt-get install fluent-bit
94
+
```
79
95
80
-
Now the following step is to instruct _systemd_ to enable the service:
96
+
1. Instruct `systemd` to enable the service:
81
97
82
-
```bash
83
-
sudo systemctl start fluent-bit
84
-
```
98
+
```bash copy
99
+
sudo systemctl start fluent-bit
100
+
```
85
101
86
102
If you do a status check, you should see a similar output like this:
87
103
@@ -99,4 +115,6 @@ systemctl status fluent-bit
99
115
...
100
116
```
101
117
102
-
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.
118
+
The default configuration of `fluent-bit` is collecting metrics of CPU usage and
119
+
sending the records to the standard output. You can see the outgoing data in your
0 commit comments