Configuração do Apache no Mint 14 não funciona

3

Eu geralmente instalo o mysql, apache e php usando os seguintes comandos

sudo apt-get install apache2 php5 libapache2-mod-php5 php5-mysql 

mas depois que fiz um novo upgrade para o Linux mint 14, recebi esses dois erros

* Starting web server apache2                                                  
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Sun Mar 10 01:44:38 2013] [warn] NameVirtualHost *:8080 has no VirtualHosts
                                                                         [ OK ]
Setting up libapache2-mod-php5 (5.4.6-1ubuntu1.1) ...
 * Reloading web server config                                                  
 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Sun Mar 10 01:44:39 2013] [warn] NameVirtualHost *:8080 has no VirtualHosts
                                                                         [ OK ] 

Eu recebo o mesmo erro quando reinicio o servidor apache também. Eu não fui capaz de fazer alterações no diretório do localhost por causa disso.

    
por Bazinga777 09.03.2013 / 21:24

1 resposta

0

Para corrigir esse problema, você precisa editar seu arquivo apache2.conf ( /etc/apache2/apache2.conf ) e definir ServerName .

Basta adicionar a seguinte linha ao arquivo:

ServerName localhost

Salve o arquivo e saia do editor. Não esqueça de reiniciar o apache.

    
por 10.03.2013 / 01:53