I want to setup my python script to always use a fixed process id. So that every time I want to kill it I don't have to do a ps aux for it. Please Help.
I am using Ubuntu & CentOS.
Ubuntu is my testing system CentOS is my server
|
I want to setup my python script to always use a fixed process id. So that every time I want to kill it I don't have to do a ps aux for it. Please Help. I am using Ubuntu & CentOS. Ubuntu is my testing system CentOS is my server |
|||||||
|
|
Why not write a small script for deleting your process:
And then you can just run the script to kill the process... |
|||
|
|
|
This is impossible, Posix process ids are guaranteed to be random (e.g.
|
|||||||
|
|
This is not something you can do, with python or any other process. The process id is assigned by the Linux kernel, and there are guarantees as to the uniqueness of the id. Moreover, if your process is used a child process of another, it's process id lives on in the kernel process table until the parent process has acknowledged that it has read the exit status. That means you cannot simply re-use the process id at a later time, it may still be reserved in the process table. I'm sure you can devise a creative kill command that'll catch your process every time:
or similar. |
||||
|
|