digite isso no terminal
sudo apt-get install libapache2-mod-perl2
,
depois: sudo a2enmod cgi
e reinicie o apache.
Não sou um grande especialista no Apache e enfrento um problema específico. Eu tenho 2 servidores onde no primeiro eu executo o Debian 7.9 com o Apache / 2.2.22, no outro eu tenho o Debian Apache / 2.4.10. Em ambos os servidores temos a mesma configuração do Apache e o mesmo dsc-statistics-presenter instalado. Abaixo do conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
# Order allow,deny
# allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Require all granted
# Order allow,deny
# Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:8080>
ServerAdmin webmaster@localhost
DocumentRoot /opt/observium/html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /opt/observium/html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
# Order allow,deny
# allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
ServerSignature On
</VirtualHost>
Agora, no Servidor com Apache / 2.2.22 eu posso ver o grpahs (via link localhost / cgi-bin / dsc-statistics / dsc-grapher) .Em servidor com Apache / 2.4.10, se eu usar esse link , Eu posso ver o conteúdo do arquivo
#!/usr/bin/perl -w
use strict;
use warnings;
use CGI;
use DSC::grapher;
my $grapher = DSC::grapher->new;
$grapher->cgi(new CGI);
$grapher->run();
Não tem certeza se é um problema do Apache ou algum PERL lib. Alguma pista?
Corrigido com uma mudança de configuração;)
foreach my $u (qw(years weeks days hours minutes))
Tags perl cgi apache-httpd