Tagged Questions
0
votes
2answers
157 views
How to get PID via subprocess.Popen with custom environment variable?
Using Python, how can I run a subprocess with a modified environment variable and get its PID? I assume subprocess.Popen() is along the right track...
In shell (bash), I would do this:
...
0
votes
3answers
129 views
Open process with specific pid in python
How can I open a process in python with specific pid. I mean i want to set process PID.
Edit:
I want determine PID of process which i have been ran with process (e.g. using Popen method of ...
2
votes
1answer
127 views
subprocess.popen pid change
I have a script in which I use subprocess.Popen to start an external program and process.kill() to kill it pretty much as soon as it's started. I've been getting Windows Error [5] (Access Denied) ...
0
votes
1answer
152 views
java Runtime.exec python and thread in python not run
python script:
import os
import subprocess
import threading
import sys
command= sys.argv[1:]
command=" ".join(command)
def readValue():
print 'start receive command'
while True:
...
0
votes
1answer
178 views
Python inter-process communication, getting pid of an independent process (not child) started from another Python process
I have a problem that feels like it ought to be simple. As a side-note, I'm already using the multiprocessing module, so I'm somewhat reluctant to use the subprocess module. Anyway, I have a Python ...
2
votes
1answer
236 views
Redirect to a file output of remote python app started through ssh
[EDITED]
I have a python app in a remote server that i need to debug, when I run the app locally it prints some debug information (including python tracebacks) that i need to monitor.
Thanks to ...
1
vote
3answers
150 views
How to quiet Python warnings in my script?
I want a Python script to grep for a particular process, extract its PID, and kill it. Here's what I'm using:
def main():
# Shutdown Tomcat
shutdownCmd = "sh ${TOMCAT_HOME}/bin/shutdown.sh"
...
0
votes
3answers
662 views
How to find Tomcat's PID and kill it in python?
Normally, one shuts down Apache Tomcat by running its shutdown.sh script (or batch file). In some cases, such as when Tomcat's web container is hosting a web app that does some crazy things with ...
0
votes
1answer
104 views
PID Processes Python paused state
Is there a way to determine whether or not a process/PID is in a paused state or not?
Currently using Popen("kill -STOP "+str(pid),shell=True) to pause a process.
What is the recommended way of ...
0
votes
2answers
135 views
How to reliably get pid of twistd spawned process?
I have a Python program that uses psutil to run some various twistd ... commands. twistd spawns and daemonizes a process and writes a foo.pid from which I can read the pid.
It also sets up so that ...
3
votes
2answers
441 views
How to determine a running process given its PID in python on Windows OS?
I have a python script that launches an application, and grabs the PID, and waits until that process ID is no longer found by using :
result = subprocess.Popen( r'tasklist /fi "PID eq ' + str(PID) + ...
0
votes
1answer
140 views
Multiprocessing output to file
Is there a way to redirect the stream to file when creating an instance of class Process or during execution Process(target=..., args=(...)).start()
I asked about the typical pythonic way
...
4
votes
3answers
2k views
Wait until a certain process (knowing the “pid”) end
I have this:
def get_process():
pids = []
process = None
for i in os.listdir('/proc'):
if i.isdigit():
pids.append(i)
for pid in pids:
proc = ...
3
votes
4answers
1k views
Can you inject code/an exe into a process with python?
I've seen a few sites talking about injecting DLL's (such as http://www.codeproject.com/KB/DLL/DLL_Injection_tutorial.aspx), but I'm struggling with how to get an EXE to work. any help/tips would be ...
5
votes
3answers
475 views
Is there a way to determine if a Linux PID is paused or not?
I have a python script that is using the SIGSTOP and .SIGCONT commands with os.kill to pause or resume a process. Is there a way to determine whether the related PID is in the paused or resumed ...
1
vote
2answers
267 views
Kill Process from Makefile
I'm trying to write a makefile that will replicate a client/server program I've written (which is really just two Python scripts, but that's not the real question of concern)...
test:
python ...
1
vote
2answers
3k views
Python subprocess.Popen get pid of the process that forks a process
I am firing up an ssh command that will fork itself out and will be running even after the script is done. So the code looks like this:
ssh_proc = Popen(['ssh', '-f', '-N', '-L', local_forward, ...
5
votes
2answers
425 views
In Python, without using the /proc filesystem, how do I tell if a given PID is running?
Say I have a PID, like 555. I want to see if that pid is running or has completed. I can check /proc/ but I don't have access to that in my production environment. What's the best way to do this, ...
2
votes
1answer
2k views
subprocess pid different from ps output
Why is it that the subprocess pid (Popen.pid) has different value from that the ps command returns?
I've noticed this when ps called both from inside python (with subprocess.call()) and from another ...
11
votes
2answers
4k views
Get process name by PID
This should be simple, but I'm just not seeing it.
If I have a process ID, how can I use that to grab info about the process such as the process name.
5
votes
3answers
958 views
How to interchange data between two python applications?
I have two python applications. I need to send commands and data between them (between two processes).
What is the best way to do that?
One program is a daemon who should accept commands and ...
1
vote
3answers
369 views
In python is there a cross-platform way of determining what process is listening to a given port?
In linux, I can use lsof -i as in the following function:
def FindProcessUsingPort(portnum):
import os
fp = os.popen("lsof -i :%s" % portnum)
lines = fp.readlines()
fp.close()
pid ...
4
votes
2answers
156 views
Grepping for Python processes
I'm running a script that executes either:
./ide.py
# or
python ./ide.py
After that I use pstree -p | grep ide.py to check, but I only found a Python process. If I have many Python scripts ...
1
vote
3answers
1k views
Linux / Bash using PS -f for specific PID returns in different format than PS -f, also queston about using Grep to parse this
I have a need, for a python script I'm creating, to first get just the PID of a process (based on its name) and then to get from that process, usings its PID, its time duration, which, from the ...
1
vote
1answer
476 views
Controlling processes from Python
I want to control several subprocesses of the same type from python (I am under linux).
I want to:
Start them.
Stop them.
Ask if they are still running.
I can start a processes with with spawnl, ...
4
votes
3answers
2k views
How to auto-restart a python script on fail?
This post describes how to keep a child process alive in a BASH script:
http://stackoverflow.com/questions/696839/how-do-i-write-a-bash-script-to-restart-a-process-if-it-dies
This worked great for ...
0
votes
1answer
307 views
mount command pid
Trying to mount a device and get the pid of mount command.
cmd="/bin/mount /dev/sda1 /mnt"
os.system(cmd)
Now how to obtain the pid of mount command? There plenty of mounted device ...
2
votes
4answers
1k views
os.kill not raising an OSError, however I do not see the given pid running
On my ubuntu server I run the following command:
python -c 'import os; os.kill(5555, 0)'
This is done so that I can see if pid 5555 is running. From my understanding this should raise an OSError ...
8
votes
4answers
4k views
Python: module for creating PID-based lockfile?
I'm writing a Python script that may or may not (depending on a bunch of things) run for a long time, and I'd like to make sure that multiple instances (started via cron) don't step on each others ...
5
votes
6answers
2k views
Auto-restart system in Python
I need to detect when a program crashes or is not running using python and restart it. I need a method that doesn't necessarily rely on the python module being the parent process.
I'm considering ...
8
votes
4answers
4k views
Fast way to determine if a PID exists on (Windows)?
I realize "fast" is a bit subjective so I'll explain with some context. I'm working on a Python module called psutil for reading process information in a cross-platform way. One of the functions is a ...
19
votes
4answers
9k views
Check if pid is not in use in Python
Is there a way to check to see if a pid corrosponds to a valid process? I'm getting a pid from a different source other than from os.getpid() and I need to check to see if a process with that pid ...
