Como posso instalar o Itop no Ubuntu?

1

Recentemente eu tentei instalar o ITop no meu xubuntu mas todas as minhas tentativas não tiveram sucesso. Eu usei muitos links como link e a página oficial também, eu instalei apache e funciona, mas quando eu digito localhost/itop , ele gera o seguinte erro:

Forbidden

You don't have permission to access /itop/ on this server.

Alguém teve essa experiência com a Itop?

    
por Kasrâmvd 18.09.2015 / 22:08

1 resposta

1

Eu apenas descobri isso. O problema foi causado pelo caminho da raiz no arquivo 000-default.conf at /etc/apache2/sites-enabled directory .

Se almoçarmos este arquivo no terminal, veremos o seguinte resultado:

<VirtualHost *:80>
...
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

...
</VirtualHost>

Como você pode ver na linha DocumentRoot /var/www/html , o DocumentRoot foi definido como /var/www/html , que deve ser definido no seguinte endereço:

/var/www/itop

e no arquivo:

<VirtualHost *:80>
...
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/itop

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

...
</VirtualHost>
    
por Kasrâmvd 19.09.2015 / 07:30