There is 1 zombie process.

I got that messages after login the ubuntu server and here how to fix:

1) Identify the zombie process:

ps axo stat,ppid,pid,comm | grep -w defunct

2) Kill the parent process:

sudo kill -9 <parent_process_number>

Leave a comment