Erro de servidor apache do Ubuntu 12.04

0

Eu tenho o ubuntu 12.04 with apache . O localhost estava funcionando bem. Mas hoje eu queria configurar um host virtual. Depois de configurar o host virtual acabei de fazer o restart server fazendo esse comando sudo /etc/init.d/apache2 restart ele me mostrou erro como

    apache2: Syntax error on line 237 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/sites-enabled/testsite.com: No such file or directory
    Action 'configtest' failed.

The Apache error log may have more information.
   ...fail!

Eu não sei qual é o erro que eu tentei resolver o erro, passando por google. Mas eu não posso resolver isso.

Aqui está o arquivo padrão para a configuração do apache2 localizado em (/ etc / apache2 / sites-available)     ServerAdmin webmaster @ localhost

DocumentRoot /var/www
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride All
    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

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

Agora, quando estou abrindo o host local no meu navegador, ele está mostrando Oops! Google Chrome could not connect to localhost

    
por newuser 28.07.2014 / 11:32

2 respostas

0

Você terá que remover o que parece ser um link falso do seu arquivo / etc / apache2 / sites-enabled.

Você pode fazer isso com:

$ sudo rm /etc/apache2/sites-enabled/testsite.com
    
por L. D. James 28.07.2014 / 11:55
0

Sugiro remover o site (sudo a2dissite testsite.com), depois reiniciar o apache, depois habilitar o site (sudo a2ensite testsite.com) e reiniciar novamente. (sudo service apache2 restart)

    
por John Csuti 11.09.2017 / 07:29