LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   Shell Script to kill a process automaticaly (https://www.linuxquestions.org/questions/programming-9/shell-script-to-kill-a-process-automaticaly-453232/)

brazilian_user 06-09-2006 02:51 PM

Shell Script to kill a process automaticaly
 
Hello Guys!

I´d like your help to solve a trouble in my system. I have two special process running in my server, each process consume about 400MB of RAM memory, sometimes this processes consume more than 400MB of memory and when this happens the service stops. I´d like to create a shell script that always a process consume more than X MB this script kill the process aumomaticaly. Actually I´d like a general ideia of how could I do this.

Thank you very much!!!

Youri 06-09-2006 04:16 PM

you can use a c script using sysctl to retrieve information and then the processes with the x mb usage their id can be retrieved and then u can kill them with killall
some info about sysctl http://www.hmug.org/man/3/sysctl.php

unSpawn 06-09-2006 04:17 PM

...or simply use Monit.

Youri 06-10-2006 03:03 PM

works too :P
but he asked for an idea of a script i gave it :P

unSpawn 06-10-2006 07:39 PM

but he asked for an idea of a script i gave it
You're quite right at that. Though sometimes it's good to give people solutions they couldn't have thought of. Reasons? OK:
0. I don't see any error-free scripting happening (esp. not with using sysctl, but OK),
1. C being faster compared to shell,
2. Monit is versatile,
3. Reinventing the wheel aint necessary,
4. I use it and I find it performs well (though that's no objective argument, OK).

crabboy 06-10-2006 09:53 PM

I'd suggesting fixing the process that's consuming 400Megs. Either it's eating the memory with a leak or by design, both of which can be corrected.

Tinkster 06-11-2006 12:32 AM

crabboys suggestion aside (which is the most sensible ;]) I'd suggest
looking at ulimit ... something like 'ulimit -m 409600' should do the
trick for your problem quite nicely.


Cheers,
Tink

Youri 06-11-2006 05:19 AM

true

and
Quote:

Originally Posted by unSpawn
3. Reinventing the wheel aint necessary,

but its fun :D thats worth some right?

unSpawn 06-11-2006 06:15 PM

but its fun | thats worth some right?
Definately.

brazilian_user 06-12-2006 08:11 AM

Hello people!!

I´m pleased your attention and effort on my issue, among the solutions you suggested to my I´ve decided to use Monit. It´s working well. For those that does not know it, please access this link, there is a very interesting article about Monit, it help me a lot, perhaps may be useful for you as well.

Thanks all you, thank you unSpawn

fedora4002 06-12-2006 11:04 AM

http://www.tildeslash.com/monit/

brazilian_user 06-12-2006 09:09 PM

Quote:

Originally Posted by fedora4002

Ow My God. That´s it. Thank You fedora4002!


All times are GMT -5. The time now is 01:43 AM.