Skip to main content

Sending a SIGHUP signal to some external process from Python script

Code :

 import psutil  
 import os  
 import signal  
 pids = psutil.get_pid_list()  
 for pid in pids:  
    if psutil.Process(pid).name == "process_name":  
     os.kill(pid,signal.SIGHUP)  
     break  

Steps to follow.

1.Get the PID of the process, in this case "process_name"  to which you want to send out a SIGHUP signal.
2.Use os.kill(pid,sig) command to send out the SIGHUP signal to that process.

1.Get the PID of the process to which you want to send out a SIGHUP signal.

One has to install a package called psutil by the following command.
easy_install psutil

Check out the following links for more details

use psutil.get_pid_list() to get all of the PIDs.
psutil.get_pid_list() works in the following manner. 
pids = [int(x) for x in os.listdir('/proc') if x.isdigit()]
return pids

once you get all the PIDs get the PID you are interested by comparing the name of the process.
if psutil.Process(pid).name == "process_name":

2.Use os.kill(pid,sig) command to send out the SIGHUP signal to that process.

os.kill(pid,signal.SIGHUP).


Done :)
I know the method of going through all the PIDs is not a good idea ! but i could not find anything better so .....



Comments

Popular posts from this blog

Enable stats GUI on haproxy.

Add bottom snippet to the haproxy.conf below the defaults section. listen  stats         bind 19.41.259.10:1234         mode            http         log             global         maxconn 10         clitimeout      100s         srvtimeout      100s         contimeout      100s         timeout queue   100s         stats enable         stats hide-version         stats refresh 30s         stats show-node         stats auth admin:password         stats uri  /haproxy?stats Make sure you are updating the IP address on the bind to your VIP and if you want, you can change th...

How to install openstack with Devstack on a single machine.

I think the best way to start messing with openstack is to install openstack using devstack. Its easy, customizable, easy to debug and the best part is one can simply discard the installed one and install new one in no time ! So I'll be giving you the steps to install  openstack on a physical box.  i.e all the component of the openstack will be installed on a single machine. Steps to follow. 1. Create a user as 'stack'. adduser stack 2.Install sudo and give the user 'stack' the sudo permission as most of the installation requires sudo permission. apt-get install sudo -y || yum install -y sudo echo "stack ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers 2a. Once done with that, one can assign a password by doing passwd stack and then logout as root and login back as stack for all of the below steps. 3.Get the openstack code. The steps are install git and clone the code from github. sudo apt-get install git -y || yum instal...