Skip to content
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

Docs: Redis ACL Username and Database #874

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,15 @@ redis:
# Defaults to '6380' as the Redis® open source server provided by the 'icingadb-redis' package listens on that port.
# port: 6380

# Authentication password.
# Authentication username, requires a `password` being set as well.
# username:

# Authentication password. May be used alone or together with a `username`.
# password:

# Numerical database identifier, defaults to `0`.
# database: 0

# Icinga DB logs its activities at various severity levels and any errors that occur either
# on the console or in systemd's journal. The latter is used automatically when running under systemd.
# In any case, the default log level is 'info'.
Expand Down
4 changes: 3 additions & 1 deletion doc/03-Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ therefore a dedicated Icinga DB instance that connects to it.
|----------|-------------------------------------------------------------------------------------------------------------------------|
| host | **Required.** Host name or address, or absolute Unix socket path. |
| port | **Optional.** TCP port. Defaults to `6380` matching the Redis® open source server port in the `icingadb-redis` package. |
| password | **Optional.** Authentication password. |
| username | **Optional.** Authentication username, requires a `password` being set as well. |
| password | **Optional.** Authentication password. May be used alone or together with a `username`. |
| database | **Optional.** Numerical database identifier, defaults to `0`. |
| tls | **Optional.** Whether to use TLS. |
| cert | **Optional.** Path to TLS client certificate. |
| key | **Optional.** Path to TLS private key. |
Expand Down
Loading