1833767 Members
2060 Online
110063 Solutions
New Discussion

Signals - SIGHUP

 
SOLVED
Go to solution
Manuales
Super Advisor

Signals - SIGHUP

What are the signals?
i read the following file:
$ more /etc/envd.conf
# envd reads its configuration information when the envd daemon
# starts, and when it receives a SIGHUP signal to restart itself.

here talks about SIGHUP signal .. what does it mean and what other signals exist?
1 REPLY 1
James R. Ferguson
Acclaimed Contributor
Solution

Re: Signals - SIGHUP

Hi Manuales:

SIGHUP is the 'hang-up' signal. Signals are give numbers and names with the prefix "SIG" for "signal". A 'kill -l' will list the various signals.

You should look at the manpages for 'kill(1)', 'kill(2)' and 'signal(5)' too.

By the way, you have additional responses to some of your questions last week to examine.

Regards!

...JRF...