http://www.perlmonks.org?node_id=525916


in reply to FastCGI script reloading

First off, why don't you develop using plain CGI and once the code is done, move over to FastCGI ? That way you dont need to restart all the time.

That being said:

killall my_program.fcgi
In the usual setup, Apache spawns and controls the FastCGI instances. If one of them dies, it should automatically start a new one. So if you change your code, you could just kill the FastCGI process (rather than the whole Apache) and things get reloaded.
apachectl graceful
A graceful restart will not cut off currently connected users (not 100% sure if it restarts the FastCGI servers, though).

Replies are listed 'Best First'.
Re^2: FastCGI script reloading
by v01d (Novice) on Jan 27, 2006 at 18:03 UTC

    Interesting options, I will try them