Skip to main content
edited tags
Link
Gilles 'SO- stop being evil'
  • 865.9k
  • 205
  • 1.8k
  • 2.3k
Source Link
mibzer
  • 1.1k
  • 5
  • 14
  • 22

Is there any impact of reaping zombie processes?

I will execute following command for reaping zombie

 /usr/bin/preap $(ps -ef | grep defunct | grep -v grep | awk '{ print $2 }' | xargs) 

Is there any service impact of this approach ?