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/windows.md
+30-16Lines changed: 30 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Windows
2
2
3
-
Fluent Bit is distributed as **td-agent-bit** package for Windows. Fluent Bit has two flavours of Windows installers: a ZIP archive (for quick testing) and an EXE installer (for system installation).
3
+
Fluent Bit is distributed as **fluent-bit** package for Windows.
4
+
Fluent Bit has two flavours of Windows installers: a ZIP archive (for quick testing) and an EXE installer (for system installation).
4
5
5
6
## Configuration
6
7
7
-
Currently the default configuration is intended for Linux only so will not function on Windows.
8
8
Make sure to provide a valid Windows configuration with the installation, a sample one is shown below:
9
9
10
10
```
@@ -72,21 +72,27 @@ Make sure to provide a valid Windows configuration with the installation, a samp
72
72
match *
73
73
```
74
74
75
+
## Migration to Fluent Bit
76
+
77
+
From version 1.9.0, `td-agent-bit` is a deprecated package and will be removed in the future.
78
+
The correct package name to use now is `fluent-bit`.
79
+
Both are currently provided to allow migration.
80
+
75
81
## Installation Packages
76
82
77
-
The latest stable version is 1.8.11:
83
+
The latest stable version is 1.9.0, each version is available on the Github release as well as at `https://fluentbit.io/releases/<Major Version>/Major>fluent-bit-<Full Version>-win[32|64].exe`:
To check the integrity, use `Get-FileHash` cmdlet on PowerShell.
87
93
88
94
```
89
-
PS> Get-FileHash td-agent-bit-1.8.11-win32.exe
95
+
PS> Get-FileHash fluent-bit-1.9.0-win32.exe
90
96
```
91
97
92
98
## Installing from ZIP archive
@@ -96,16 +102,17 @@ Download a ZIP archive from above. There are installers for 32-bit and 64-bit en
96
102
Then you need to expand the ZIP archive. You can do this by clicking "Extract All" on Explorer, or if you're using PowerShell, you can use `Expand-Archive` cmdlet.
97
103
98
104
```
99
-
PS> Expand-Archive td-agent-bit-1.8.11-win64.zip
105
+
PS> Expand-Archive fluent-bit-1.9.0-win64.zip
100
106
```
101
107
102
108
The ZIP package contains the following set of files.
103
109
104
110
```
105
-
td-agent-bit
111
+
fluent-bit
106
112
├── bin
107
113
│ ├── fluent-bit.dll
108
114
│ └── fluent-bit.exe
115
+
│ └── fluent-bit.pdb
109
116
├── conf
110
117
│ ├── fluent-bit.conf
111
118
│ ├── parsers.conf
@@ -127,7 +134,7 @@ If you see the following output, it's working fine!
127
134
128
135
```
129
136
PS> .\bin\fluent-bit.exe -i dummy -o stdout
130
-
Fluent Bit v1.8.x
137
+
Fluent Bit v1.9.x
131
138
* Copyright (C) 2019-2020 The Fluent Bit Authors
132
139
* Copyright (C) 2015-2018 Treasure Data
133
140
* Fluent Bit is a CNCF sub-project under the umbrella of Fluentd
@@ -148,16 +155,20 @@ To halt the process, press CTRL-C in the terminal.
148
155
149
156
## Installing from EXE installer
150
157
151
-
Download an EXE installer from the [download page](https://fluentbit.io/download/). It has both 32-bit and 64-bit builds. Choose one which is suitable for you.
158
+
Download an EXE installer from the [download page](https://fluentbit.io/download/).
159
+
It has both 32-bit and 64-bit builds.
160
+
Choose one which is suitable for you.
152
161
153
-
Then, double-click the EXE installer you've downloaded. Installation wizard will automatically start.
Click Next and proceed. By default, Fluent Bit is installed into `C:\Program Files\td-agent-bit\`, so you should be able to launch fluent-bit as follow after installation.
167
+
Click Next and proceed.
168
+
By default, Fluent Bit is installed into `C:\Program Files\fluent-bit\`, so you should be able to launch fluent-bit as follows after installation.
To register Fluent Bit as a Windows service, you need to execute the following command on Command Prompt. Please be careful that a single space is required after `binpath=`.
@@ -220,7 +233,8 @@ To start Fluent Bit automatically on boot, execute the following:
220
233
221
234
### [FAQ] Fluent Bit fails to start up when installed under `C:\Program Files`
222
235
223
-
Quotations are required if file paths contain spaces. Here is an example:
236
+
Quotations are required if file paths contain spaces.
0 commit comments