Related links: http://bugs.php.net/bug.php?id=43224 this patch http://bugs.php.net/bug.php?id=41593 http://bugs.php.net/bug.php?id=36158 http://php-fpm.anight.org/ test script too: \n"; $i = 0; while ($i < 35) { echo (++$i), "
\n"; flush(); sleep(1); } echo "end!
\n"; ?> diff -urNp -x '*.orig' php-5.6.40.org/sapi/cgi/cgi_main.c php-5.6.40/sapi/cgi/cgi_main.c --- php-5.6.40.org/sapi/cgi/cgi_main.c 2019-01-09 10:54:13.000000000 +0100 +++ php-5.6.40/sapi/cgi/cgi_main.c 2021-08-23 23:19:27.222458494 +0200 @@ -111,6 +111,9 @@ static void (*php_php_import_environment static int children = 0; +/* Socket we are listening on incoming connections */ +static int fcgi_fd = 0; + /** * Set to non-zero if we are the parent process */ @@ -1461,6 +1464,21 @@ void fastcgi_cleanup(int signal) } #endif +/** + * Graceful shutdown. Close listening sockets. + */ +void fastcgi_graceful_shutdown(int signal) +{ +#ifdef DEBUG_FASTCGI + fprintf(stderr, "FastCGI graceful shutdown, pid %d\n", getpid()); +#endif + + /* Close the listening socket so new processes can reuse the same port */ + closesocket(fcgi_fd); + fcgi_fd = 0; +} + + PHP_INI_BEGIN() STD_PHP_INI_ENTRY("cgi.rfc2616_headers", "0", PHP_INI_ALL, OnUpdateBool, rfc2616_headers, php_cgi_globals_struct, php_cgi_globals) STD_PHP_INI_ENTRY("cgi.nph", "0", PHP_INI_ALL, OnUpdateBool, nph, php_cgi_globals_struct, php_cgi_globals) @@ -1759,7 +1777,6 @@ int main(int argc, char *argv[]) int requests = 0; int fastcgi; char *bindpath = NULL; - int fcgi_fd = 0; fcgi_request *request = NULL; int repeats = 1; int benchmark = 0; @@ -2058,9 +2075,13 @@ consult the installation file that came parent = 0; /* don't catch our signals */ - sigaction(SIGTERM, &old_term, 0); sigaction(SIGQUIT, &old_quit, 0); sigaction(SIGINT, &old_int, 0); + + /* call graceful shutdown handler for SIGTERM */ + act.sa_flags = 0; + act.sa_handler = fastcgi_graceful_shutdown; + sigaction(SIGTERM, &act, &old_term); break; case -1: perror("php (pre-forking)");