Skip to content
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
7 changes: 7 additions & 0 deletions docs/TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ To gain interactive shell access to the container's runtime as the splunk user,
$ docker exec -it -u splunk <container_name/container_id> /bin/bash
```

#### Installing Packages
Once inside the container, you can install additional packages with the default package manager:
```
$ microdnf install <package_name>
```
Please note that the package installer `microdnf` is specific to the redhat-8 operating system. When building other operating systems, please research and use the recommended package manager. You can refer to `base/<operating_system>/install.sh` to see package installation examples for different operating systems.

#### Debug variables
There are some built-in environment variables to assist with troubleshooting. Please be aware that when using these variables, it is possible for sensitive keys and information to be shown on the container's stdout/stderr. If you are using any custom logging driver or solution that persists this information, we recommend disabling it for the duration of this debug session.

Expand Down