...
If nothing is still found, it is recommended to investigate the history file located in the ~/var/check_mk/core, explicitly searching for the summary information. In this particular scenario, the summary to search for is 'DT2'.
Code Block language bash theme RDark OMD[mysite]~$ grep -rl <DOWNTIMESUMMARY> ~/var/check_mk/core/history
...
Code Block | ||||
---|---|---|---|---|
| ||||
OMD[mysite]~$ grep -rl <DOWNTIMESUMMARY> ~/var/check_mk/core/archive/* |
...
Stop the site
Code Block language bash theme RDark OMD[mysite]~$ omd stop mysite
Open a CLI text editor and remove the entry from the history file.
Code Block language bash theme RDark OMD[mysite]~$ vi ~/var/check_mk/core/history
Start this site again.
Code Block language bash theme RDark OMD[mysite]~$ omd start mysite
These steps will effectively clear the active lingering downtime.
...