Skip to content

configuration: update config file location #580

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
merged 1 commit into from
May 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions configuration/config-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,31 @@ See also: [Lifecycle of a Fluentd Event](../quickstart/life-of-a-fluentd-event.m

## Config File Location

#### RPM, Deb or DMG
### RPM, Deb or DMG

#### fluent-package

If you install Fluentd using the `fluent-package` packages, the config file should be at `/etc/fluent/fluentd.conf`.

```text
$ sudo vi /etc/fluent/fluentd.conf
```

#### td-agent (EOL)

{% hint style='warning' %}
As `td-agent` had already reached EOL, we recommend to use `fluent-package` (the successor to `td-agent`).

* [fluent-package v5 vs td-agent v4](../quickstart/fluent-package-v5-vs-td-agent.md)
{% endhint %}

If you install Fluentd using the `td-agent` packages, the config file should be at `/etc/td-agent/td-agent.conf`.

```text
$ sudo vi /etc/td-agent/td-agent.conf
```

#### Gem
### Gem

If you install Fluentd using the Ruby Gem, you can create the configuration file using the following commands:

Expand Down