mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-06 06:46:26 +01:00
25 lines
968 B
Plaintext
25 lines
968 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * installing/installing_rhv/installing-rhv-troubleshooting.adoc
|
|
|
|
[id="installing-getting-debug-information_{context}"]
|
|
= Getting debug information from the installation program
|
|
|
|
You can use any of the following actions to get debug information from the installation program.
|
|
|
|
* Look at debug messages from a past installation in the hidden `.openshift_install.log` file. For example, enter:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ cat ~/<installation_directory>/.openshift_install.log <1>
|
|
----
|
|
<1> For `installation_directory`, specify the same directory you specified when you ran `./openshift-install create cluster`.
|
|
|
|
* Re-run the installation program with `--log-level=debug`:
|
|
+
|
|
[source,terminal]
|
|
----
|
|
$ ./openshift-install create cluster --dir=<installation_directory> --log-level=debug <1>
|
|
----
|
|
<1> For `installation_directory`, specify the same directory you specified when you ran `./openshift-install create cluster`.
|