killing a process pid


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users killing a process pid
# 1  
Old 12-01-2006
process pid

What option is used with kill to cause the server to reread its config file.

Last edited by jo calamine; 12-01-2006 at 11:37 PM..
# 2  
Old 12-01-2006
If you want to kill the server, Control + C usually helps. A kill command is not the perfect solution.

Anyway, ps aux will give you the process id running in the system.

Pick the pid of your choice and issue a kill -9 pid
# 3  
Old 12-01-2006
is there a way to find the pid # and issue the kill with one command line?

strange ?'s i know, this is for a class.
# 4  
Old 12-01-2006
I would say using kill -9 pid is not the better choice in most of the situations,
where the process intended to kill is poorly deprived of doing any sort of cleanup operations. Most of the programs would have implemented ( if not, that cannot be helped ) or rather registered signal handlers and that signals should only be delivered for a safe and clean kill possibly. SIGTERM should have been registered in most of the cases and it would be better to go with that instead of the merciless kill. Smilie
# 5  
Old 12-01-2006
Quote:
Originally Posted by jo calamine
is there a way to find the pid # and issue the kill with one command line?

strange ?'s i know, this is for a class.
This had been answered many times. Please use the SEARCH facility. Smilie

Anyway you could use,

just a pointer, you need to refine that
Code:
kill -<SIGNAL> `ps -ef | grep <processname> | awk '{print $2}'`

# 6  
Old 12-01-2006
keep getting
arg must be a process of job id
# 7  
Old 12-01-2006
Quote:
Originally Posted by jo calamine
keep getting
arg must be a process of job id
Can you please post, what is the exact command that you had run and the error message you get?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trap killing PID

Hi, Just wonder if there is a way to identify the PID of the killing process using trap. Please let me know possible solution. #!/bin/ksh hello () { print "in hello"; print "PID of process issued SIGNAL"; --> this is what i'm looking for. } trap hello SIGKILL SIGTERM while... (3 Replies)
Discussion started by: Gajendra_PH
3 Replies

2. UNIX for Dummies Questions & Answers

Need script for killing Pid in Linux

need script(shell or python) for killing pid in linux (2 Replies)
Discussion started by: roshan9995
2 Replies

3. Shell Programming and Scripting

Killing the process ID's

Hi , I have a list of application process id's. Is there a way to kill all the process listed below using the script, except the once which are starting with " Genesis " adm 1522 ABC_Process.tra adm 1939 Genesis_Process.tra adm 2729 Genesis_Archive.tra adm 3259 xyz_Process.tra (5 Replies)
Discussion started by: murali1687
5 Replies

4. Shell Programming and Scripting

Finding the age of a unix process, killing old processes, killing zombie processes

I had issues with processes locking up. This script checks for processes and kills them if they are older than a certain time. Its uses some functions you'll need to define or remove, like slog() which I use for logging, and is_running() which checks if this script is already running so you can... (0 Replies)
Discussion started by: sukerman
0 Replies

5. Solaris

Finding PID of Killing process

Say I have 2 processes(perl scripts on Solaris machine) A and B. the process A kill the process B. While in the process B how do I print the PID of the process that Killed it(process A) before dieing. My process A looks like open(STATS, "ps -ef|"); while ($inputLine = <STATS>) { if... (7 Replies)
Discussion started by: enigma_007
7 Replies

6. Shell Programming and Scripting

Killing process!!!!

Hi friends, i m in big trouble.... i have one script which connects two server ...like below.. script1.sh ------------------------------------- bash test.sh & eval x=$@ export x=`echo $x` #echo $x # ssh user@8.2.5.6 bash /mbbv/location/script.sh $x|sed '/Binary file/d'... (1 Reply)
Discussion started by: Shahul
1 Replies

7. UNIX for Dummies Questions & Answers

Need to get pid of a process and have to store the pid in a variable

Hi, I need to get the pid of a process and have to store the pid in a variable and i want to use this value(pid) of the variable for some process. Please can anyone tell me how to get the pid of a process and store it in a variable. please help me on this. Thanks in advance, Amudha (7 Replies)
Discussion started by: samudha
7 Replies

8. UNIX for Dummies Questions & Answers

killing the process

Hi, First, I am running a scipt.While the script is running I realize that I dont want the script to be run so I am killing the script externally.Before the process gets terminated or killed it should delete all the temporary files created by the script.How to do this?Can anyone help me? ... (3 Replies)
Discussion started by: arthi
3 Replies

9. Shell Programming and Scripting

Killing of a process and send a mail if the process doesnot come up within 2 minutes

Hi Friends, I am new to this forum as well as new to shell scripting. I have a problem here and i need someone to solve this. Let us consider there are two processes(abc & def).There is a script which kills these two processes(i.e killtheprocess abc). Here abc is the argument . There is a... (1 Reply)
Discussion started by: Prince89
1 Replies

10. Shell Programming and Scripting

killing PID's of ptree

gurus, normally to stop a process ,i need to kill all its child & then parent process. i do it manually as follows bash-2.03$ ps -ef | grep bpm|grep -v grep tibadmin 21882 21875 0 May 27 ? 0:00 /bin/sh ./bpmse_20.sh -Xms512m -Xmx512m /tibco/UpdateCustomer/dat/UpdateCustome ... (0 Replies)
Discussion started by: abhijeetkul
0 Replies
Login or Register to Ask a Question