Tagged Questions

In computing, the process identifier (normally referred to as the process ID or just PID) is a number used by most operating system kernels (such as that of UNIX, Mac OS X or Microsoft Windows) to (temporarily) uniquely identify a process. This number may be used as a parameter in various function calls allowing processes to be manipulated, such as adjusting the process's priority or killing it altogether.

learn more… | top users | synonyms

38
votes
9answers
21k views

Process ID in Java

How do I get the id of my Java process? I know there are several platform-dependent hacks, but I'm after a generic solution.
16
votes
4answers
4k views

Can someone explain the structure of a Pid in Erlang?

Can someone explain the structure of a Pid in Erlang? Pids looks like this : <A.B.C> , e.g. <0.30.0> , but i would like to know what is the meaning of these three "bits" : A, B and C. 'A' ...
14
votes
7answers
27k views

Port 80 is being used by SYSTEM (PID 4), what is that?

I am trying to use port 80 for my application server, but when I perform "netstat -aon" I get TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 When I look up the process in task manager, it shows PID 4 is ...
13
votes
4answers
5k 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 ...
10
votes
1answer
791 views

NSRunningApplication.h: “Not all applications have a pid”

From the comment on processIdentifier in NSRunningApplication.h: Not all applications have a pid. Huh? I can see this happening in the specific case of an NSRunningApplication representing a ...
8
votes
6answers
1k views

The best way to ensure only 1 copy of bash script is running?

What is the simplest/best way to ensure only 1 copy of given script is running - assuming it's bash on linux? At the moment I'm doing: ps -C script.name.sh > /dev/null 2>&1 || ...
8
votes
5answers
6k views

IIS Application pool PID

is anyone familiar with a way to get the Application pool that is associated with a process ID ? I am using Win32_Process to query the W3WP services and return the PID now I am trying to get the app ...
8
votes
5answers
4k views

How can I check from Ruby whether a process with a certain pid is running?

The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.
7
votes
5answers
3k 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 ...
7
votes
2answers
7k views

ms c++ get pid of current process

Part of my application is in C++ under windows. I need the process id for the current process. Any thoughts?
6
votes
4answers
1k views

How do I find the process ID (pid) of a process started in java?

If I get a process object in Java through Runtime.getRuntime().exec(...), or ProcessBuilder.start(), I can wait for it through Process.waitFor(), which is like Thread.join(), or I could kill it with ...
6
votes
2answers
352 views

where does top gets real-time data

Where does top application gets it's data on Linux? I would be interested in real-time CPU load/pid data.(I read allmost all documentation in /proc/pid man page, but the info isn't there). The pid is ...
6
votes
2answers
1k 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.
6
votes
4answers
505 views

Java: Get a process given a pid

Say I have a current running process known, how can I turn this into a Process object in Java? The process is already running, so I don't want to spawn off another one, I just want to encapsulate it ...
6
votes
4answers
4k views

Bash: how to check if a process id (PID) exists

In a bash script i want to do the following (in pseudo-code): if [ a process exists with $PID ]; then kill $PID fi What's the appropriate bash for the conditional statement? Thanks
6
votes
5answers
1k views

How do a script know his own PID?

I have a script in bash called Script.sh, and i need to know his own PID ( i need to get PID inside the Script.sh ) Any clues to realize this ? Regards, Debugger
6
votes
6answers
4k views

How to tie a network connection to a PID without using lsof or netstat?

Is there a way to tie a network connection to a PID (process ID) without forking to lsof or netstat? Currently lsof is being used to poll what connections belong which process ID. However lsof or ...
6
votes
9answers
2k views

Bash Shell Scripting: what simple logic am I missing

This may be too generic a question as is but... I am stumped by trying to move through the directories from within a shell script. I'm not a *nix power user, but I am comfortable working through the ...
5
votes
2answers
190 views

Android - How to get the processName or packageName by using PID?

MY QUESTION: What could I use to retrieve the processName or packageName of a certain process given its PID? Since in my task manager I wanted to use the PID while utilizing the ...
5
votes
2answers
370 views

Maximum PID in Linux

I am porting an application from Tru64 to Linux and it uses PID_MAX defined in limits.h. Linux doesn't have that define. How do I find PID_MAX in c without reading proc/kernel/pid_max by hand? Is ...
5
votes
3answers
139 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 ...
5
votes
7answers
517 views

Java hangs even though script's execution is completed

I'm trying to execute a script from within my java code which looks like: Process p = Runtime.getRuntime().exec(cmdarray, envp, dir); // cmdarray is a String array // consisting details of the script ...
5
votes
2answers
7k views

PID of last started process in Bash-Script

i am using the program synergy together with an ssh tunnel it works, i just have to open an console an type these two commands: ssh -f -N -L localhost:12345:otherHost:12345 otherUser@OtherHost ...
5
votes
4answers
2k 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 ...
4
votes
6answers
322 views

Ubuntu Java: Find a specific program's pid and kill the program

I'm trying to make an application that checks if this specific application is running, then kill the app after a specified amount of time. I'm planning to get the pid of the app. How can I get the pid ...
4
votes
4answers
2k views

know PID java process

I've started a process with following code ProcessBuilder pb = new ProcessBuilder("cmd", "/c", "path"); try { Process p = pb.start(); } catch (IOException ex) {} Now I need to know ...
4
votes
2answers
328 views

How to check wether a process with a given PID is running?

I have a program written in C#, running on Linux using Mono. The program writes its PID to a file. Now I want to check wether a process with this PID is running on start up. Is there a way using Mono? ...
4
votes
3answers
94 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 ...
4
votes
3answers
912 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 ...
4
votes
6answers
4k views

Getting pid and details for topmost window

Does anyone know how to get the PID of the top active window and then how to get the properties of the window using the PID? I mean properties like process name, program name, etc. I'm using Qt under ...
4
votes
9answers
2k views

How to get the PID of a process that is piped to another process in Bash?

I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat. ( tail -f $1 & ) | nc -l -p 9977 But the problem is that when the ...
4
votes
6answers
1k views

How can I quickly find the user's terminal PID in Perl?

The following snippet of code is used to find the PID of a user's terminal, by using ptree and grabbing the third PID from the results it returns. All terminal PID's are stored in a hash with the ...
3
votes
1answer
91 views

Kalman Filter on PID

I'm not sure if this goes here, but I'm having a bit of trouble understanding the Kalman filter. What I want to do is condition a sensor with a PID compensator to find the optimal gains for the PID ...
3
votes
3answers
159 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
2answers
86 views

How to fire Java method using bash

Suppose I launch a Java application: java -cp whatever.jar com.example.Start Process launches ok and keeps running with PID 1314. Now I would like the system to fire a method by users request. How ...
3
votes
3answers
286 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 ...
3
votes
2answers
273 views

Getting last process' PID in Makefile

My Makefile look something like this: setsid ./CppServer>daemon.log 2>&1 & echo $!>daemon.pid What I expect it to do is to store the PID of my_awesome_script in corresponding file. ...
3
votes
3answers
242 views

Set trap in bash for different process with pid known

I need to set a trap for a bash process i am starting in the background. The background process may run very long and has his pid saved in a specific file. Now i need to set a trap for that process, ...
3
votes
2answers
806 views

Windows batch file : PID of last process?

I am launching a browser from batch file. START "www.google.com" I would like to know the PID of this browser window launched. There can be many browser windows launched on a single machine. I ...
3
votes
2answers
288 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, ...
3
votes
3answers
953 views

PID error on mysql.server start?

I've just tried installing MySQL using homebrew (on Mac OS X 10.6), but I've run across an issue at the first hurdle. When trying to manually start the server (mysql.server start), I get the following ...
3
votes
3answers
320 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 ...
3
votes
2answers
347 views

Redirecting standard output to a file containing the pid of the logging process

I've searched for a while but i can't either find an answer or come up with a solution of my own, so I turn to you guys. First question I actually ask here :) I would like to run several instances of ...
3
votes
1answer
784 views

How to use the pidfile library correctly?

I already read the man page of the pidfile function family. But I don't really understand it. What is the correct usage? Is there a more elaborate example available? I think I understand pidfile_open. ...
3
votes
3answers
603 views

windows PID = 0 valid?

In Windows, is 0 valid PID for a process or is it reserved by OS? It would be nice if you can provide a link to a doc that says it is reserved or what. Thank!
3
votes
2answers
1k views

Getting a pid of a process created in C#

Lets say that I'm trying to create a new process with the following code: System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.WorkingDirectory = ...
3
votes
3answers
2k views

How to determine if a process ID exists

I'm using C# .NET 2.0. I need to determine if a PID exists. I came up with the following code: private bool ProcessExists(int iProcessID) { foreach (Process p in Process.GetProcesses()) { ...
3
votes
5answers
3k views

Get PID from Word ApplicationClass?

using Microsoft.Office.Interop.Word; ApplicationClass _application = new ApplicationClass(); Can I get the PID from the Winword.exe process that was lunched by the _application? I need the PID ...
3
votes
6answers
10k views

Find PID of a Process by Name without Using popen() or system()

I've a process name and I've to send a kill() signal to that process but I need its PID to call kill(). I would only like to use: popen("pidof process_name"); as the last thing. Is there any other ...

1 2 3 4