Apache2 dando erro SSLcertificateFile

1

Estou usando o Ubuntu 13.04. Inicialmente eu tinha instalado o apache2 e estava funcionando bem, mas depois ele começou a dar alguns problemas, então eu removi o apache usando os seguintes comandos

  

sudo apt-get autoremove

     

sudo apt-get remove apache2 *

     

dpkg -S which apache2

e depois eu reinstalei o apache2 usando

  

sudo apt-get instala o apache2

A instalação estava quase concluída, mas recebi a seguinte mensagem

  
  • Iniciando o servidor web apache2
      Erro de sintaxe na linha 6 do / etc / apache2 / sites-enabled / ssl:   SSLCertificateFile: o arquivo '/etc/apache2/ssl/apache.pem' não existe ou está vazio   Ação 'start' falhou.   O log de erros do Apache pode ter mais informações.

         

    [falha]

         

    invoke-rc.d: initscript apache2, a ação "start" falhou.   Configurando o apache2 (2.2.22-6ubuntu5.1) ...

  •   
output to ls /etc/apache2/sites-enabled/ is default-ssl mysite ssl 

o conteúdo do mysite é     ServerAdmin webmaster @ localhost

DocumentRoot /home/gautam/apache/
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /home/gautam/apache/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    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
    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

depois de executar sudo rm / etc / apache2 / sites-enabled / * ssl Estou recebendo a seguinte saída e apache2 está OFF

* Restarting web server apache2                                                
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
(98)Address already in use: make_sock: could not bind to address [::]:443
                                                                         [ OK ]

O que fazer? Alguma sugestão???

    
por Gautam-Toraskar 20.01.2014 / 13:41

1 resposta

1

Eu removi o SSL, mas ainda estava dando o seguinte erro:

  

Reiniciando o servidor da web apache2 apache2: não foi possível determinar com segurança o servidor totalmente   nome de domínio qualificado, usando 127.0.1.1 para o ServerName apache2: não foi confiável   determinar o nome de domínio totalmente qualificado do servidor, usando 127.0.1.1 para ServerName   (98) Endereço já em uso: make_sock: não pôde ligar ao endereço [::]: 443 [OK]

Eu pesquisei e me referi a esses dois posts:

Por fim, desativei o SSL usando:

a2dismod ssl
    
por Gautam-Toraskar 21.01.2014 / 07:14