5

For some reason my cron job scripts aren't exiting cleanly and they're backing up my server. There are currently a couple hundred processes running for one of my users. I can use the following command to kill all processes by that user, but how can I simplify this to kill only crons?

pgrep -U username | while read id ; do kill -6 $id ; done

It would be dangerous to run the above command as is, correct? Wouldn't that kill mysql and other important things?

ewwhite
  • 194,921
  • 91
  • 434
  • 799

2 Answers2

8

To kill all processes for the user, you have a few options. I like: su - username then kill -9 -1

To see which "cron" processes belong to user :

pgrep -u username cron

To kill those processes:

pkill -u username cron
ewwhite
  • 194,921
  • 91
  • 434
  • 799
2

Use:

kill -6 $(pgrep -U username cron) 

You can search with pgrep full string with -f arg if you need to kill specific cron jobs, while let others live.

kill signal is pretty dangerous really, so you should check what you are going to kill. If username is 'root' then you can kill important things, yes.

Navern
  • 1,569
  • 1
  • 9
  • 14