Where to get logs of OS reboot?

Hi All,

System got rebooted two days ago , but it came to knowledge today . Want to check logs and need to submit the analysis.

After surfing , found.

Journalctl | grep shutdown
Who -b

Is there any indepth logs will be available?

OS : Rhel Linux

Thanks,

journalctl --list-boots

இந்த கமாண்டை இயக்கினால் உங்கள் லினக்சில் சேமிக்கப்பட்டு இருக்கும் boot லாகுகளின் விவரங்கள் அதன் Index உடன் காண்பிக்கும். அதில் கடைசியாக உள்ள லாகை பார்க்க

journalctl -b 0

இந்த கமாண்டை இயக்கவும். இங்கே 0 என்பது Index ஆகும். அதற்கு முன் உள்ள லாகை பார்க்க

journalctl -b -1

இந்த கமாண்டை இயக்கவும்.

/var/log/messages
/var/log/auth.log
/var/log/dmesg

check these log files too.

Thanks team.