Is there such a thing as a smart standalone FastCGI process manager? I have my custom server in C++ which I am willing to connect to Apache/Nginx as a FastCGI application. Apache has mod_fcgid which offers some process management functionality, but Nginx requires something standalone. Is there such a thing in the wild? I'm trying spawn-fcgi from lighttpd project, but it's just a wrapper, no a real process manager.
Asked
Active
Viewed 1,974 times
2
-
Have you wound anything good so far? – darkk Sep 14 '11 at 13:41
-
Unfortunately not really. It turns out one has to do this kind of stuff himself. – Michael Pliskin Sep 15 '11 at 22:10
3 Answers
0
You can try supervisor, it's a light weighted standalone process amanager which not only support fastcgi process management. It can help you to monitoring the processes as a deamon, like your process (fcgi processes or other processes) was killed by some reason, supervisor will restart it automatically.

SnakeHunt2012
- 21
- 1
-2
-
1Does it work with applications other than PHP? I will check myself though. – Michael Pliskin Apr 07 '11 at 20:39
-
Nope it seems to work with PHP only, so not much use for me :( – Michael Pliskin Apr 09 '11 at 07:22