Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

kill cron proccess ubuntu terminal

0

First of all check the working process with this command.

ps -o pid,sess,cmd afx | egrep "( |/)cron( -f)?$"
This command's output is

599  599 cron
4288  599 \_ CRON
and now kill the process with this command

pkill -s 4288
 
PREVIOUS NEXT
Tagged: #kill #cron #proccess #ubuntu #terminal
ADD COMMENT
Topic
Name
2+2 =