Skip to content

Commit

Permalink
Merge pull request #874 from Icinga/doc-redis-username-password
Browse files Browse the repository at this point in the history
Docs: Redis ACL Username and Database
  • Loading branch information
lippserd authored Dec 17, 2024
2 parents a47ccc3 + 8532e9a commit e9fefa2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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

0 comments on commit e9fefa2

Please sign in to comment.