Não é possível reiniciar o lighttpd? Recebendo erros estranhos em relação ao fcgi?

1

Recebi o seguinte erro quando tentei reiniciar o lighttpd.

Estou executando um aplicativo rails e, quando implemento uma nova versão do site, geralmente faço

/etc/init.d/lighttpd restart

Isso costumava funcionar sempre, até hoje, quando recebi a seguinte mensagem de erro. Eu não entendo o que está causando nada disso, até onde eu sei nem uso PHP, meu projeto está em rails

2010-10-05 20:57:03: (mod_fastcgi.c.1042) the fastcgi-backend /var/dei/rails/current/public/dispatch.fcgi failed to start:
2010-10-05 20:57:03: (mod_fastcgi.c.1046) child exited with status 1 /var/dei/rails/current/public/dispatch.fcgi
2010-10-05 20:57:03: (mod_fastcgi.c.1049) if you try do run PHP as FastCGI backend make sure you use the FastCGI enabled version.
You can find out if it is the right one by executing 'php -v' and it should display '(cgi-fcgi)' in the output, NOT (cgi) NOR (cli)
For more information check http://www.lighttpd.net/documentation/fastcgi.html#preparing-php-as-a-fastcgi-program
2010-10-05 20:57:03: (mod_fastcgi.c.1351) [ERROR]: spawning fcgi failed.
2010-10-05 20:57:03: (server.c.849) Configuration of plugins failed. Going down.



Debian Version: lenny/sid
Rails Version: Rails 2.3.5
Ruby Version: ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
Lighttpd: lighttpd-1.4.15 (ssl) - a light and fast webserver
    
por Janak 06.10.2010 / 04:23

1 resposta

2

Encontrei a resposta esta página . Aqui está o conteúdo abaixo, no caso de o link ficar inoperante.

Basicamente, eu precisava criar um arquivo fastcgi.crash.log com as permissões de gravação apropriadas e todos os meus problemas foram resolvidos.

lighttpd, fcgi, rails and child exited with status 9, 1, 2, 3 or X
By Giulio Turetta

Ok, these errors are not good. They didn’t tell much about what happended.
But you can’t do as I did. Don’t wander on the dark side of the system…
Just try to execute your FCGI as your lighttpd did.
Find your lighttpd user in lighttpd configuration file (debian: /etc/lighttpd/lighttpd.conf).
On my configuration I see:
server.username  = “www-data”

so…

$ su
# cd /my_rails_root/public
# sudo -u www-data ./dispatch.fcgi

Read what’s happen and solve.
That’s all! 
    
por 06.10.2010 / 05:22