Munin não está criando arquivos html no Ubuntu

2

Eu instalei o Munin no Ubuntu Server 14.04 com o Apache 2.4.7

Mas depois de toda a configuração, Munin não está criando os arquivos html no diretório html. Estes são meus arquivos:

munin.conf

dbdir     /var/lib/munin
htmldir   /var/www/www/munin  
logdir    /var/log/munin
rundir    /var/run/munin

# Where to look for the HTML templates
#
tmpldir /etc/munin/templates

[MuninMaster]
    address 127.0.0.1
    use_node_name yes

E meu apache.conf

    Alias /munin /var/www/www/munin
<Directory /var/www/www/munin>
        #Order allow,deny
        #Allow from localhost 127.0.0.0/8 ::1
        #Options None
    Require all granted
        Options FollowSymLinks SymLinksIfOwnerMatch
    # This file can be used as a .htaccess file, or a part of your apache
    # config file.
    #
    # For the .htaccess file option to work the munin www directory
    # (/var/cache/munin/www) must have "AllowOverride all" or something 
    # close to that set.
    #

    # AuthUserFile /etc/munin/munin-htpasswd
    # AuthName "Munin"
    # AuthType Basic
    # require valid-user

    # This next part requires mod_expires to be enabled.
    #

    # Set the default expiration time for files to 5 minutes 10 seconds from
    # their creation (modification) time.  There are probably new files by
    # that time. 
    #

    <IfModule mod_expires.c>
        ExpiresActive On
        ExpiresDefault M310
    </IfModule>

</Directory> 

Mas quando eu vou para myip / munin eu tenho um 403 Proibido. E olhando em / var / www / www / munin não há arquivos nele. (Antes disso, eu tinha / var / www / munin mas não funciona de qualquer maneira).

Alguma dica?

    
por Santiago Mendoza Ramirez 29.10.2015 / 17:57

1 resposta

0

Primeiro, este é um erro de digitação: htmldir /var/www/www/munin

Se for, vamos garantir que o usuário munin tenha acesso ao diretório. Para testá-lo:

  1. Torne /var/www/munin de munin :

    $ sudo chown munin: /var/www/munin 
    
  2. Execute um trabalho manualmente e verifique se há erros na saída:

    $ sudo sudo -u munin /usr/bin/munin-cron --debug 2>&1 | less
    
por 29.10.2015 / 18:06