Estoy probando scripts CGI por primera vez pero sin éxito. He leído muchos tutoriales y los he podido seguir en diferentes foros pero no puedo hacerlo funcionar. Estoy usando un servidor web Apache en una máquina Fedora 10. siempre tengo problemas con(13) Permiso denegado: acceso denegado a /cgi-bin/test.cgi
[Wed Oct 21 20:47:36 2009] [notice] SELinux policy enabled; httpd running as context unconfined_u:system_r:httpd_t:s0
[Wed Oct 21 20:47:36 2009] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Wed Oct 21 20:47:36 2009] [notice] Digest: generating secret for digest authentication ...
[Wed Oct 21 20:47:36 2009] [notice] Digest: done
[Wed Oct 21 20:47:36 2009] [notice] Apache/2.2.11 (Unix) DAV/2 PHP/5.2.9 mod_ssl/2.2.11 OpenSSL/0.9.8g configured -- resuming normal operations
necesito ayuda. Así es mi entorno.
uname -a
Linux localhost.localdomain 2.6.27.5-117.fc10.i686 #1 SMP Tue Nov 18 12:19:59 EST 2008 i686 i686 i386 GNU/Linux
ls -l /var/www/cgi-bin/
total 36
-rwxrwxrwx 1 root root 106 2009-10-21 18:29 index.html
-rwxr-xr-x 1 root root 11089 2009-02-24 20:11 squidGuard.cgi
-rwxr-xr-x 1 root root 5720 2009-02-24 20:11 squidGuard-simple.cgi
-rwxr-xr-x 1 root root 5945 2009-02-24 20:11 squidGuard-simple-de.cgi
-rwxrwxrwx 1 root root 110 2009-10-21 17:38 test.cgi
apachectl -v
Server version: Apache/2.2.11 (Unix)
Server built: Mar 6 2009 09:12:25
perl -version
This is perl, v5.10.0 built for i386-linux-thread-multi
Copyright 1987-2007, Larry Wall
Mi script
cat test.cgi
#!/usr/bin/perl
print "Content-Type: text/html\n\n";
print "Hello, world!\n";
El mensaje de error I gen cuando intento acceder al servidor de la página web "http://192.168.50.29/cgi-bin/test.cgi" tiene el siguiente aspecto:
[Wed Oct 21 21:00:27 2009] [error] [client 192.168.50.69] (13)Permission denied: access to /cgi-bin/test.cgi denied
he añadido la línea:
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
a /etc/httpd/conf/httpd.conf
No puedo hacer que funcione. ¿Alguien puede ayudarme?
El mensaje de error I gen cuando intento acceder al servidor de la página web "http://192.168.50.29/test.cgi "se ve así: [Mié 21 de octubre 22:31:32 2009] [error] [cliente 192.168.50.69] (13) Permiso denegado: el ejecutivo de '/var/www/html/test.cgi' falló [Mié 21 de oct. 22:31:32 2009] [error] [cliente 192.168.50.69] Cabeceras prematuras del script: test.cgi –
¿Por qué, oh por qué, oh por qué root posee esos archivos? –
Descubre qué usuario/grupo posee el proceso del servidor Apache y se asegura de que posee sus scripts cgi y tiene permiso de ejecutivo. – heferav