0
votes
7answers
421 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 …
1
vote
1answer
25 views
How to send signal to JVM created by JNI_CreateJavavm call?
Hello Guys
Is there any possibility that I can directly send signal to a Java virtual machine which is created by calling JVM_CreateJavavm in native C/C++ code?
e.g.:
For a nor …
0
votes
3answers
390 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? …
4
votes
4answers
94 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>&a …
0
votes
1answer
20 views
How can I force a refresh of what ports have listeners
I'm trying to re-launch a WCF service that I killed earlier, but I'm getting an AddressAlreadyInUseException. The port it's attempting to use is 1819.
I ran netstat -nao from the …
1
vote
4answers
124 views
How to get the PID of a process that is piped to another process in Bash?
Hi,
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 …
1
vote
2answers
59 views
How can I implement a multi-threaded PID controller in Java?
I'm kinda new to Java, so haven't yet fully grasped the concept of multithreading.I would like to create a PIDController class that allows me to do this:
ControllerMethods methods …
3
votes
3answers
164 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.Get …
2
votes
4answers
122 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 ste …
0
votes
4answers
84 views
Looking to get the env vars of a PID in BASH for a BASH script.
Any way to do this?
I have a script that exports a few vars and runs a component.
I'm looking to find out the actual values of some of these vars while the process is running. (W …
1
vote
3answers
598 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 tr …
1
vote
3answers
274 views
Identify the PID of a Executing Batch File in Powershell
Hi,
I need to identify the P(rocess) ID of an executing batch file from a PowerShell (v1.0) script. Can anyone suggest a way of doing this?
Thanks, MagicAndi.
8
votes
3answers
775 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 proces …
1
vote
4answers
498 views
How do I increase the /proc/pid/cmdline 4096 byte limit?
For my Java apps with very long classpaths, I cannot see the main class specified near the end of the arg list when using ps. I think this stems from my Ubuntu system's size limit …
0
votes
2answers
89 views
PID assingment policy in Windows / Using PIDs for naming temproary files
What is the PID assignment policy in Windows? Repeated runs of a process calling _getpid() indicates non sequential assignment (3548,3344,3628,2748,4872,2360).
Given the observed …
