You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/en/docs/handbook/troubleshooting.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@ Example:
19
19
20
20
## Post-mortem minikube debug logs
21
21
22
-
minikube stores post-mortem INFO logs in the temporary directory of your system. On macOS or Linux, it's easy to get a list of recent INFO logs:
22
+
minikube stores post-mortem logs in the temporary directory of your system. One log file is created per subcommand and any subsequent invocations of the subcommand with the same args will append to the same file. If the log file has exceeded 1MB in size, a new log file is created. On macOS or Linux, it's easy to get a list of recent logs:
23
23
24
24
```shell
25
-
find $TMPDIR -mtime -1 -type f -name "*minikube*INFO*" -ls 2>/dev/null
25
+
find $TMPDIR -mtime -1 -type f -name "*minikube*" -ls 2>/dev/null
26
26
```
27
27
28
-
For instance, this shows:
28
+
For instance after running `minikube start`, the above comamnd will show:
29
29
30
-
`-rw-r--r-- 1 user grp 718 Aug 18 12:40 /var/folders/n1/qxvd9kc/T//minikube.mac.user.log.INFO.20200818-124017.63501`
30
+
`-rw-r--r-- 1 user grp 718 Aug 18 12:40 /var/folders/n1/qxvd9kc/T//minikube_start_dc950831e1a232e0318a6d6ca82aaf4f4a8a048b_0.log`
31
31
32
32
These are plain text log files: you may rename them to "<filename>.log" and then drag/drop them into a GitHub issue for further analysis by the minikube team. You can quickly inspect the final lines of any of these logs via:
0 commit comments