The sigterm tag has no wiki summary.
12
votes
5answers
2k views
In what order should I send signals to gracefully shutdown processes?
In a comment on this answer of another question, the commenter says:
don’t use kill -9 unless absolutely
necessary! SIGKILL can’t be trapped so
the killed program can’t run any
shutdown ...
10
votes
3answers
2k views
Java: How to handle a SIGTERM
No many words needed:
Is there a way in Java to handle a received SIGTERM?
5
votes
4answers
723 views
How to detect pending system shutdown on Linux?
I am working on an app where I need to detect system shutdown. However, I have not found any reliable way get a notification on this event. I know that on shutdown, my app will receive a SIGTERM ...
4
votes
1answer
1k views
How to get rid of SIGTERM error
i have been working on this iphone app in the new xcode4. Practically every time I exit my application in the simulator I get an error on a code line in the main.m Here is my line of code, and then ...
3
votes
2answers
213 views
Handle two consequent SIGTERMs
There is a daemon which has two threads: th1, th2. th2 reads a socket using read(2).
If I kill the daemon with SIGTERM, th1 catches and handles the signal (sets the termination flag), after that the ...
3
votes
2answers
2k views
how can I kill a Linux process in java with SIGKILL Process.destroy() does SIGTERM
In Linux when I run the destroy function on java.lang.Process object (Which is true typed java.lang.UNIXProcess ) it sends a SIGTERM signal to process, is there a way to kill it with SIGKILL?
3
votes
2answers
1k views
Detect user logout / shutdown in Python / GTK under Linux - SIGTERM/HUP not received
OK this is presumably a hard one, I've got an pyGTK application that has random crashes due to X Window errors that I can't catch/control.
So I created a wrapper that restarts the app as soon as it ...
3
votes
3answers
778 views
ActiveRecord::StatementInvalid when process receives SIGTERM?
In my Rails app, I have a script that updates some records in the database. When I send a SIGTERM to kill the script, it occasionally receives that signal while ActiveRecord is executing a query. ...
2
votes
1answer
398 views
Thin doesn't respond to SIGINT or SIGTERM
bundle exec thin start -p 3111 gives the following output:
Using rack adapter
Thin web server (v1.2.11 codename Bat-Shit Crazy)
Maximum connections set to 1024
Listening on ...
2
votes
1answer
300 views
Java: How to handle a SIGTERM only?
Is there a way in Java to handle a received SIGTERM?
I am running a java service but do not want to close my java service when the user log off.
Would like to override only the sigterm shutdown ...
2
votes
3answers
238 views
PID files hanging around for daemons after server restart
I have some daemons that use PID files to prevent parallel execution of my program. I have set up a signal handler to trap SIGTERM and do the necessary clean-up including the PID file. This works ...
2
votes
3answers
12k views
Apache server keeps crashing, “caught SIGTERM, shutting down”
This just started happening three weeks or so ago. The content of my website hasn't changed, it's just a phpBB forum using MySQL as a backend.
Nothing has changed in well over a year but recently, ...
2
votes
4answers
4k views
shell script to spawn processes, terminate children on SIGTERM
I want to write a shell script that spawns several long-running processes in the background, then hangs around. Upon receiving SIGTERM, I want all the subprocesses to terminate as well.
Basically, I ...
1
vote
1answer
224 views
My iPhone Simulator gets SIGTERM when I quit it after clicking Home button
My iPhone Simulator always gets SIGTERM signal when I quit it after clicking Home button. No matter what app I run, even the template app generated by XCode, as long as I first click Home button then ...
1
vote
1answer
166 views
receive SIGTERM
I have designed a message passing interface in c which is used to provide communication between different processes running in my system. This interface creates 10-12 threads for its purpose and use ...
1
vote
2answers
904 views
Is there a posix SIGTERM alternative on Windows? - (A gentle kill for console application)
I have a console daemon that is run by a GUI application. When the GUI application is terminated I'd like to stop the daemon as well.
How can I do it in a gentle way on windows?
On Linux, I would ...
1
vote
3answers
2k views
Win32 API analog of sending/catching SIGTERM
Under POSIX OS there is signal API that allows to send a signal to process to shut it down
with kill and you can catch it with sigaction and do what you need;
However, Win32 is not POSIX system, so:
...
0
votes
0answers
173 views
SIGHUP received. Attempting to restart
The websites are hosted in server, randomly started showing the Fedora test page.
looking through on the apache error log file, found the following lines:
[Sun Dec 18 04:02:03 2011] [notice] ...
0
votes
1answer
147 views
Linux: get the exit code from the kill command
If I send a SIGTERM signal to a process using the kill command, I expect an exit code, but I always get 0 (zero) when running the below command after killing a process:
echo $?
According to the ...
0
votes
1answer
150 views
SIGTERM + Rails + mysql?
I've suddenly started getting a lot of SignalException:SIGTERM exceptions in an application, apparently coming from mysql. Stacktraces like
...
0
votes
0answers
203 views
django + apache SIGTERM shutdown?
This just happened all of a sudden. I'm just on my local machine, not a remote server. Just trying to run my Django app on my local Apache + mod-wsgi. It was working 2 days ago, and today it decided ...
0
votes
2answers
539 views
Node.JS Shutdown Hook
Is it possible to intercept the default kill signal and use it as a command for a graceful shutdown? This is for Solaris SMF. The easiest way to have a stoppable service that I have found is to set ...
0
votes
4answers
1k views
How can a process kill itself?
#include<stdlib.h>
#include<unistd.h>
#include<signal.h>
int main(){
pid_t pid = fork();
if(pid==0){
system("watch ls");
}
else{
sleep(5);
...
0
votes
1answer
114 views
'SIGTERM' problem
I have this problem that when there is an OpenGL application I am working on. When I try drawing this particular piece of code:
for (float i = 0; i < 100; i++)
{
glBegin(GL_LINE_LOOP);
...
0
votes
1answer
297 views
I have a problem with the WIFSIGNALED()/WTERMSIG() macros, after using waitpid()
In this code C i launch a program from the command line and when it is closed from a signal different from SIGTERM (signal for normal end) my code should relaunch the initial program passed from the ...
0
votes
3answers
693 views
How to free dynamic allocated variable by SIGTERM?
I work on code something like this
... HEADERS ...
int *var;
void child() {
... //some work
free(var);
exit(EXIT_SUCCESSFUL);
}
int main(void) {
...
//allocate variable
var = (int *) ...