Questions tagged [signals]
The signals tag has no summary.
36 questions
25
votes
4
answers
19k
views
Do background processes get a SIGHUP when logging off?
This is a followup to this question.
I've run some more tests; looks like it really doesn't matter if this is done at the physical console or via SSH, neither does this happen only with SCP; I also ...
23
votes
2
answers
13k
views
Configure buggy systemd service to terminate via SIGKILL
Background
I've been asked to create a systemd script for a new service, foo_daemon, that sometimes gets into a "bad state", and won't die via SIGTERM (likely due to custom signal handler). ...
17
votes
4
answers
17k
views
I get Killed by signal 15. when I'm using svn
I'm using svn+ssh and I see a number of:
Killed by signal 15.
during a svn up.
Any ideas way?
15
votes
4
answers
14k
views
How to find out the source of a POSIX signal
Is there a way to find out the origin of a signal sent in Red Hat Enterprise Linux 5 (SIGTERM etc.)?
I'm regularly trapping a TERM in an application and I have no idea where it is coming from.
13
votes
2
answers
8k
views
Wireless link frequency choice (900Mhz vs 5.8Ghz) for 2-3km distance
I have recently been contracted by a client of mine to facilitate the wireless communication of his "home" offices and a secondary site.
The primary site is the top two floors of a 5-story office ...
10
votes
2
answers
21k
views
Industry standard for minimum Wifi signal strength?
Is there an industry standard for how strong a Wifi signal needs to be in order to have a reliable connection? For example, maybe Wifi endpoints are designed to the specification that they connect ...
9
votes
2
answers
8k
views
How to send a signal to a Docker container without affecting restart policy?
TIL that docker kill means kill in the sense of "make it dead", as opposed to the POSIX sense of "send a signal".
We have several containers that we need to send a SIGHUP to in ...
7
votes
3
answers
18k
views
Letting systemd service to stop later without blocking on `systemctl stop`
I have bunch of services responsible for running action consumed from the queue.
I want to be able to restart services gently (without interrupting action which're already running)
It can be solved ...
6
votes
1
answer
531
views
Is it generally safe to use SIGCONT on processes?
I have a many daemon processes that sometimes get hung up during a db transaction, thus blocking other queries ( and causing general havoc )
In order to debug, I've added some code in the daemon ...
5
votes
1
answer
9k
views
whats the difference between sigkill and sigabrt? [closed]
The other day I experienced a halt in my python application with sigabrt, but I knew that the init should send a sigkill signal. I'm curious what's the difference between them, if any? Can someone ...
4
votes
1
answer
2k
views
Ctrl+C no longer working to get a new blank line in bash
I have been using Ctrl+C on most terminals to easily cancel the line I was writing and open the way for a new line. (I'm not talking about killing a running bash script, but just opening a new blank ...
4
votes
3
answers
5k
views
What does the Ubiquiti Bullet do?
I was briefly shown the networking setup for a rural hospital campus. Some of the things I was told or shown are:
There is an 802.11b signal, broadcast over an omnidirectional antenna on a tower. This ...
3
votes
2
answers
4k
views
Modifiying parameters in postgresql.conf and SIGHUP
I modified the parameter maintenance_work_mem in postgresql.conf in my production environment. I'd like to know if I send a SIGHUP to the postgres process it will reload that variable, and if it's ...
3
votes
7
answers
760
views
Wireless network signal strength troubleshooting... where to start?
Here is the information displayed by the wireless router (see end of post). The problem is that my netbook does not get any signals from the router if moved more than 3 feet (yup, three feet) away ...
3
votes
1
answer
577
views
How to find which process sent a HUP signal to my node.js process?
Every Monday at 9AM UTC something sends a HUP signal to my node.js process (and I think HUP is being sent to all processes, not just mine). How do I find which process sent the HUP signal to my ...