mysql doesn't respond to Ctrl+C / SIGINT

Created on 4 Dec 2018  路  4Comments  路  Source: docker-library/mysql

When I press Control C to kill the library/mysql:5.7.20 container, nothing happens.

question

Most helpful comment

My comment above was slightly wrong; it should actually be Ctrl+\ (not /), which sends SIGQUIT: https://stackoverflow.com/a/19248775

All 4 comments

This is by design (mysqld doesn't respond to SIGINT). Try Ctrl+ instead.

@tianon Huh, I didn't know that before.

Curious, which interprocess signal does Control+/ represent (in GNU/Linux)?

This doesn't appear to be a very portable hotkey combination. Is Control+_ equivalent? Which signal would that be?

My comment above was slightly wrong; it should actually be Ctrl+\ (not /), which sends SIGQUIT: https://stackoverflow.com/a/19248775

Was this page helpful?
0 / 5 - 0 ratings