dimanche 1 novembre 2009
Tuer les processus Background d'Oracle
Par david techer, dimanche 1 novembre 2009 à 14:24 :: Oracle
Sur ma machine à la maison, après une mauvaise installation/désinstallation de la base, il y a quelques processus de background qui ont survécu
oracle@monroe:~$ ps aux|grep ora_ oracle 1436 0.0 99.9 1416 589505315 ? S 13:25 0:00 grep ora_ oracle 11477 0.0 99.9 500368 589505315 ? S Oct31 0:00 ora_pmon_STATS oracle 11479 0.0 99.9 499996 589505315 ? S Oct31 0:00 ora_dbw0_STATS oracle 11481 0.0 99.9 499692 589505315 ? S Oct31 0:00 ora_lgwr_STATS oracle 11483 0.0 99.9 499708 589505315 ? S Oct31 0:00 ora_ckpt_STATS oracle 11485 0.0 99.9 499724 589505315 ? S Oct31 0:00 ora_smon_STATS oracle 11487 0.0 99.9 499632 589505315 ? S Oct31 0:00 ora_reco_STATS oracle 11489 0.0 99.9 499632 589505315 ? S Oct31 0:00 ora_s000_STATS oracle 11491 0.0 99.9 499856 589505315 ? S Oct31 0:00 ora_d000_STATS oracle 11493 0.0 99.9 499856 589505315 ? S Oct31 0:00 ora_d001_STATS oracle 11495 0.0 99.9 499816 589505315 ? S Oct31 0:00 ora_arc0_STATS
Rien de plus simple qu'un petit kill -9 pid pour remettre tout ça en ordre.
On récupère les processus
oracle@monroe:~$ ps aux|grep ora_|awk '{ print $2}' 1438 11477 11479 11481 11483 11485 11487 11489 11491 11493 11495Puis
ps aux|grep ora_|awk '{ print $2}'|xargs -i kill -9 {}On vérifie
oracle@monroe:~$ ps aux|grep ora_ oracle 1456 0.0 99.9 1416 589505315 ? S 13:28 0:00 grep ora_