Linux lighttpd
Bonjour,
j'ai commencer réssament a bidouiller mon my book world un disque dur nass de chez westerne digital
je vient de rencontrer un problème avec le server web quand je veut le lancer il me fait cette érreur :
Starting lighttpd
: No such file or directory
2009-02-10 23:36:00: (mod_fastcgi.c.920) child exited: 127
2009-02-10 23:36:00: (mod_fastcgi.c.923) 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
2009-02-10 23:36:00: (mod_fastcgi.c.1200) [ERROR]: spawning fcgi failed.
2009-02-10 23:36:00: (server.c.673) Configuration of plugins failed. Going down.
j'ai beau cherche je ne trouve pas
amicalement thomidefix
j'ai commencer réssament a bidouiller mon my book world un disque dur nass de chez westerne digital
je vient de rencontrer un problème avec le server web quand je veut le lancer il me fait cette érreur :
Starting lighttpd
: No such file or directory
2009-02-10 23:36:00: (mod_fastcgi.c.920) child exited: 127
2009-02-10 23:36:00: (mod_fastcgi.c.923) 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
2009-02-10 23:36:00: (mod_fastcgi.c.1200) [ERROR]: spawning fcgi failed.
2009-02-10 23:36:00: (server.c.673) Configuration of plugins failed. Going down.
j'ai beau cherche je ne trouve pas
amicalement thomidefix
A voir également:
- Linux lighttpd
- Linux reader - Télécharger - Stockage
- R-linux - Télécharger - Sauvegarde
- Backtrack linux - Télécharger - Sécurité
- Toutou linux - Télécharger - Systèmes d'exploitation
- Linux mint 22.1 - Accueil - Linux
3 réponses
Starting lighttpd : No such file or directory
Il nous faudrait la ligne complète, sinon ça va être chaud pour t'aider :-s Ou alors les messages écrites sur la sortie standard, c'est plus ce que c'était :-)
Bonne chance
À mon avis ton lightppd est mal installé.
Vérifie aussi ça :
http://help.joyent.com/index.php?pg=kb.page&id=254
Bonne chance
Vérifie aussi ça :
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)Essaye aussi de regarder ça :
http://help.joyent.com/index.php?pg=kb.page&id=254
Bonne chance
dit moi ce que je fait et je ferait que je suis paummerr
merci
server.document-root = "/usr/www/lib/"
server.pid-file = "/var/run/lighttpd.pid"
server.errorlog = "/var/log/lighttpd/error.log"
server.port = 80
server.username = "www-data"
server.groupname = "www-data"
server.modules = (
"mod_auth",
"mod_access",
"mod_alias",
"mod_cgi",
"mod_fastcgi",
"mod_accesslog"
)
server.errorfile-prefix = "/usr/www/lib/error-"
mimetype.assign = (
".html" => "text/html",
".txt" => "text/plain",
".jpg" => "image/jpeg",
".png" => "image/png",
".gif" => "image/gif",
".css" => "text/css"
)
#accesslog.filename = "/var/log/lighttpd/access.log"
static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" )
index-file.names = ( "nasMaster.pl" )
# bruce - I don't think we need this now...
#cgi.assign = ( ".cgi" => "/usr/bin/perl" )
alias.url = ( "/auth" => "/usr/www/lib" )
auth.backend = "htdigest"
auth.backend.htdigest.userfile = "/var/private/lighttpd.htdigest.user"
auth.require = ( "/auth" =>
(
"method" => "digest",
"realm" => "nas admin",
"require" => "valid-user"
# bruce - removed user=
# "require" => "user=admin"
)
)
fastcgi.debug = 0
# Bruce - Removed host & port and replaced with a socket
# "host" => "127.0.0.1",
# "port" => 1026,
fastcgi.server = ( ".pl" =>
(( "socket" => "/tmp/lighttpd.fcgi.socket",
"bin-path" => "/usr/www/lib/nasMaster.pl",
"check-local" => "disable",
"min-procs" => 1,
"max-procs" => 1,
"idle-timeout" => 30,
"bin-environment" => (
# Environment variables for nasMaster.pl
"PERL5LIB" => "/usr/www/lib",
"NAS_NBIN" => "/usr/www/nbin",
),
)),
"nasMaster.pl" => (( "socket" => "/tmp/lighttpd.fcgi.socket",
"check-local" => "disable",
))
)