Saturday, February 14, 2026

How to collect the ExaWatcher logs from the node.

/opt/oracle.ExaWatcher/GetExaWatcherResults.sh --from 2/13/2026_12:00:00 --to 2/14/2026_07:00:00

Monday, January 5, 2026

Friday, January 2, 2026

Kernel parameter to collect the VMcore to be added in /etc/sysctl.conf

kernel.hardlockup_panic=1 kernel.hung_task_panic=1 kernel.max_rcu_stall_to_panic=1 kernel.panic_on_rcu_stall=1 kernel.softlockup_panic=1 kernel.unknown_nmi_panic=1

Wednesday, December 31, 2025

How to connect to The node when System is hung, and unable to login

ssh -o ConnectTimeout=1 -o ConnectionAttempts=1 user@host "nice -n -20 bash" It gets you a high-priority shell when nothing else works.

Thursday, December 11, 2025

How to drop the NVME drive from DB node.

date; dbmcli -e alter physicaldisk NVME_4_2 drop for replacement

Wednesday, December 3, 2025

How to Generate the NMI from the ILOM ( when system is hung)

1) log into iloms via ssh. 2) start /SP/console on the Node 3) set /HOST/generate_host_nmi=true on the ILOM 4) start /SP/console node, watch for it to start dumping core. Leave it at this point while it finishes dumping core and rebooting (this may take 30 minutes or more). NOTE: Do not wait on this step. Move on to step 5. 5) Verify that the node

Tuesday, December 2, 2025

ipmitool commands to list all serial numbers

ipmitool fru print | awk ' /^FRU Device Description/ {fru=$0} /[Ss]erial/ {print fru " -> " $0} ' /opt/oracle.SupportTools/CheckHWnFWProfile -action list -mode serial_numbers .