針對(duì)系統(tǒng)版本為:CentOS Linux release 7.4.1708 (Core) [root@node3 opt]# cat /etc/redhat-release 由于并發(fā)執(zhí)行腳本導(dǎo)致內(nèi)核鎖,Soft lockup bug沒(méi)有讓系統(tǒng)徹底死機(jī),那么若干個(gè)進(jìn)程(或者kernel thread)被鎖死在內(nèi)核區(qū)域。 解決方式: 1、查看/proc/sys/kernel/watchdog_thresh中的參數(shù) [root@node3 opt]# tail -1 /proc/sys/kernel/watchdog_thresh 20 2、臨時(shí)生效該參數(shù) [root@node3 opt]# sysctl -w kernel.watchdog_thresh=30 kernel.watchdog_thresh = 30 #將修改watchdog_thresh中的參數(shù)為30。 #查看watchdog_thresh中參數(shù) # tail -1 /proc/sys/kernel/watchdog_thresh 3、使用echo永久生效 [root@node3 opt]# echo 30 > /proc/sys/kernel/watchdog_thresh [root@node3 opt]# tail -1 /proc/sys/kernel/watchdog_thresh |
|