0
votes
1answer
67 views

why does a node.js process suddenly die on osx with no explanation in any log file?

90% of the time I always get a stack trace. But sometimes the process just quits and I have no idea why. Anyway to print the stack trace always? Or find more information in dmesg or something?
-1
votes
1answer
17 views

Killing a PetalsESB Server in a Java programm

My Problem: I run a program in Java / Groovy. In this program, I start a PETALS ESB Server, which also runs on Java. I want to kill only the server and then start him afterwards again in the same ...
-3
votes
2answers
98 views

Why kill [pid] does not work? [closed]

I face a problem trying to kill a pid. I have a ruby pid that i try to kill but nothing happens. lsof -i (service list) ruby 282 xxx 3u IPv4 0xffffff80111f4c20 0t0 TCP ...
1
vote
1answer
293 views

How to find out which Node.js pid is running on which port

I'd like to restart one of many Node.js processes I have running on my server. If I run ps ax | grep node I get a list of all my Node proccesses but it doesn't tell me which port they're on. How do I ...
0
votes
1answer
65 views

How to spawn a vbs script in Expect?

I have a vbs script that kills a process. This script is provided with a pid as argument. I would like to spawn this script from an expect script. But when i write: spawn KillProcess.vbs pid_to_kill ...
1
vote
1answer
229 views

Script to HUP parent and child process

I need a shell script to send a HUP to the parent and child processes. I am using freeBSD with tcsh? #/bin/sh Somehow, I need to pipe the PID output from pgrep to kill -HUP in a loop in a shell ...
0
votes
4answers
2k views

How to kill a process in C when pid is know

I have a cleanup process which needs to kill the process whose PID is passed as an argument to it. I can very well use the kill(pid_t, SIGKILL) to kill it. However the PID which i get is an integer ...
0
votes
1answer
276 views

Removing quotes from a variable based argument [closed]

When a try to run kill -9 $pid in a bash script I get the error: + kill -9 '"1316"' script.sh: line 341: kill: "1316": arguments must be process or job IDs How do I stop the quotes from appearing? ...
0
votes
1answer
518 views

[Solved]How to obtain the pid with the classname and kill the proc obtained

I'm trying to get the pid of a process having the class name, the idea is, the user create a task, select the event, the app and if the app will be opened or killed, so if the user select killed, i ...
2
votes
2answers
906 views

C - Get PID of process opened with popen

I have a program written in C, which opens another program using popen. I 'd like to get the pid of that program or some kind of handler for it, so as to kill it after a certain time limit, or if it ...
9
votes
1answer
1k views

How to get variable from text file into Bash variable

Simple question, in BASH I'm trying to read in a .pid file to kill a process. How do I read that file into a variable. All the examples I have found are trying to read in many lines. I only want to ...
0
votes
2answers
283 views

bash script does not appear in ps aux output : how to kill?

I have done some googling on this but not come up with an answer ... frustration is setting in! I want to kill my bash script. This executes various other processes. I can kill any process for which ...
5
votes
8answers
5k 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 ...
0
votes
3answers
372 views

kill: not a pid or valid job spec

I have created an application that is basically a deamon written in C. It is stopped and started using a shell script. Specifically, to stop it, kill is used to send a SIGTERM signal. The PID of ...
0
votes
1answer
214 views

php how could i kill a process by PID when safe_mode is on

i need to kill a process by PID, but safe_mode is on and i can't use posix_kill or exec or shell_exec and something like that! what should i do ?
2
votes
2answers
1k views

C++ Sending a simple signal in Windows

is there an equivalent to the function kill() on Windows? int kill(pid_t pid, int sig); If not, would it be possible to test if a process is running based on its PID? Thanks
0
votes
3answers
240 views

Reduce time between each kill() function in C

Hi does anyone know a way to send signal SIGUSR1/2 without loss to another pid ? the problem is when i put kill(pid, SIGUSR1) in a while loop, my other program recieve only few of them, its seems ...
2
votes
3answers
2k views

Bash script to kill and restart Hudson

I am a novice at Bash scripting but I'm a quick learner. Usually. I'm trying to write a script to kill and restart an instance of Hudson--it needs to be restarted to pick up changes in environment ...
0
votes
1answer
835 views

After forced quit, “killall Finder” says “No matching processes…” but PID still exists?

Here's one for ya. Upon a forced quit of the Finder with unsuccessful relaunch, "killall Finder" in terminal returns: "No matching processes belonging to you were found" Oddly enough, the PID for ...
4
votes
6answers
15k 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 ...