Automate a task


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Automate a task
# 1  
Old 12-12-2017
Automate a task

Dear All,

I am relatively new to UNIX and wanted to accomplish a simple task which should be automated. That's why I need your help. I shall briefly describe what I want.

Basically, there is a process (X) (related to a particular software which I am using in my system) which automatically starts after some time and eats up a lot of resources resulting in slowing up other necessary processes running. So all I want is to -
STEP-1: periodically (it is better if I can set the the interval duration) check whether process-X has started or not
STEP-2: obtain the PID of the process-X
STEP-3: execute: "kill -9 <PID of process-X>"

And these three steps, I want to write as a script and that script should automatically check the status of process-X and take necessary action as long as my system is up.

Could anybody please help me to accomplish this.

- Sam.
# 2  
Old 12-12-2017
Instead of repeatedly killing process (X); why not just use nice when you start it so it will run at a lower priority and use less system resources when your necessary processes are running at normal priority.
# 3  
Old 12-12-2017
Quote:
Originally Posted by Don Cragun
Instead of repeatedly killing process (X); why not just use nice when you start it so it will run at a lower priority and use less system resources when your necessary processes are running at normal priority.
Thank you, Don Cragun for replying.

The problem here is - process X does not get initiated by the user, it is started from within another master process which is the main design software (installed in our company's server, so I don't have much access to that other than launching it and working on it) I am using in my system. Now, I don't know on what basis process X is started. So, everyday morning, I used to kill process X and continue with my work. If am in front of my workstation, I can manually check the status of process X and kill it whenever necessary. However, if it starts overnight then it slows don the progress of other simulations being run in the main software. So, I wanted to have a local work around to this problem so that what I am doing manually (when I am in front of the workstation) can be done automatically. And I don't have to bother about it forever Smilie
# 4  
Old 12-12-2017
Then look up renice.

From the man page:
Code:
DESCRIPTION
       renice alters the scheduling priority of one or more running processes.
       The first argument is the priority value to be used.  The  other  argu‐
       ments  are  interpreted as process IDs (by default), process group IDs,
       user IDs, or user names.  renice'ing a process group  causes  all  pro‐
       cesses  in the process group to have their scheduling priority altered.
       renice'ing a user causes all processes owned by the user to have  their
       scheduling priority altered.

# 5  
Old 12-12-2017
What kind of resources does it consume, and what are the thesholds?
We can measure memory, CPU time, elapsed time.
What is your OS (run uname)?
# 6  
Old 12-12-2017
Quote:
Originally Posted by Samiran Dam
Thank you, Don Cragun for replying.

The problem here is - process X does not get initiated by the user, it is started from within another master process which is the main design software (installed in our company's server, so I don't have much access to that other than launching it and working on it) I am using in my system. Now, I don't know on what basis process X is started. So, everyday morning, I used to kill process X and continue with my work. If am in front of my workstation, I can manually check the status of process X and kill it whenever necessary. However, if it starts overnight then it slows don the progress of other simulations being run in the main software. So, I wanted to have a local work around to this problem so that what I am doing manually (when I am in front of the workstation) can be done automatically. And I don't have to bother about it forever Smilie
What operating system are you using?

What shell are you using?

When you are in front of your workstation and manually kill process X, please show us exactly what commands do you type into your shell to kill process X (in CODE tags). If you want a script to replace what you're doing manually, it is always great to actually know what you do manually! Show us the output produced by each step. Tell us what you use from each step as input to the next step.

Do you really have to use kill -9 PID? Doesn't kill PID work?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need help with an easy task

Hello everyone my name is Telis and i just registered in this forum.. i just started programming in linux shell and i need help with this easy task.. this is my code #!/bin/sh echo "What is your First name?" read name if ; then echo "Hello Master." else echo "Who are you?" fi when i... (2 Replies)
Discussion started by: Telis
2 Replies

2. Shell Programming and Scripting

Parallelize a task that have for

Dear all, I'm a newbie in programming and I would like to know if it is possible to parallelize the script: for l in {1..1000} do cut -f$l quase2 |tr "\n" "," |sed 's/$/\ /g' |sed '/^$/d' >a_$l.t done I tried: for l in {1..1000} do cut -f$l quase2 |tr "\n" "," |sed 's/$/\ /g' |sed... (7 Replies)
Discussion started by: valente
7 Replies

3. Shell Programming and Scripting

Task

Hi experts, I have a problem with the below shell task: I need to modify the file creatin a paired row , per each row which matches filter (e.g. number of nonempty columns = 5) Output should look like this: second row is original one from the input, first row(red) is pairing row, it's... (29 Replies)
Discussion started by: hernand
29 Replies

4. Shell Programming and Scripting

task

Hi all, I'm newbie and stuck here. Thanks for any help. Input(txt file) a b X c d Y e f Z g h W Requested output: a b X Y c d Y X e f Z W g h W Z Please use code tags when posting data and code samples! (10 Replies)
Discussion started by: hernand
10 Replies

5. Shell Programming and Scripting

Need a help to automate a task

I need to automate a manual task using shell scripting. The scenario is like :- #!/usr/bin/sh echo "please enter the name of the lab server to test ..." read s ssh $s This is peace of the script which will allow me to login to another server using "ssh". I have a conf file which is having... (4 Replies)
Discussion started by: Renjesh
4 Replies

6. UNIX for Advanced & Expert Users

Script that can Automate Printer adding task in HP-UX servers

I want to make a script to automate printer adding task.My inputs are like Printer name : xyz Port number :9001 I should write a script to make the Printer adding task will be automated. Like in manually adding task we are doing through hppi or jetadmin tools. ---------- Post updated at... (2 Replies)
Discussion started by: AnilKPatnaik
2 Replies

7. Shell Programming and Scripting

Parse an XML task list to create each task.xml file

I have an task definition listing xml file that contains a list of tasks such as <TASKLIST <TASK definition="Completion date" id="Taskname1" Some other <CODE name="Code12" <Parameter pname="Dog" input="5.6" units="feet" etc /Parameter> <Parameter... (3 Replies)
Discussion started by: MissI
3 Replies

8. Shell Programming and Scripting

Need help with a manual task

I have an ASCII file that I receive on a monthly bases that is fixed length. I break the file into separate files based on a 5 character numerical sequence. I have 20 different sequences I have to find. the input file looks something like this xy-ins 2008yuthnrlsinrthsntwilgrha33260001... (4 Replies)
Discussion started by: jcalisi
4 Replies

9. Shell Programming and Scripting

comment and Uncomment single task out of multiple task

I have a file contains TASK gsnmpproxy { CommandLine = $SMCHOME/bin/gsnmpProxy.exe } TASK gsnmpdbgui { CommandLine = $SMCHOME/bin/gsnmpdbgui.exe I would like to comment and than uncomment specific task eg TASK gsnmpproxy Pls suggest how to do in shell script (9 Replies)
Discussion started by: madhusmita
9 Replies

10. UNIX for Dummies Questions & Answers

process vs task

Hi, I am new to this forum and unix too. I have just started learning unix. As I was going through the first chapter, I read that unix is multitasking, multiprogramming, multiprocessing and multiuser OS. My question is: Is there any difference between a TASK and a PROCESS. How are PROCESS... (2 Replies)
Discussion started by: hana
2 Replies
Login or Register to Ask a Question