Kill Signals
The default signal on kill is 15 (terminate nicely, cleaning up after yourself), the most often usage is `kill -9 <process ID>`, which tells the process to die hard, with no cleanup - best not to run this against a database process as data may become corrupt.
1) SIGHUP 2) [...]
