Instalando LAMP pelo Synaptic

Iniciado por jcao, 19 de Novembro de 2008, 11:35

tópico anterior - próximo tópico

jcao

Estou utilizando o Ubuntu 8.04 e instalei o LAMP pelo Synaptic. Já consegui testar o apache, mas ao tentar testar o php e o phpmyadmin tenho problemas.
Tentei dar o reload no apache e recebi a seguinte mensagem

Citar
sudo /etc/init.d/apache2 restart
* Restarting web server apache2                                                 * We failed to correctly shutdown apache, so we're now killing all running apache processes. This is almost certainly suboptimal, so please make sure your system is working as you'd expect now!
Syntax error on line 42 of /etc/apache2/sites-enabled/000-default:
Alias takes two arguments, a fakename and a realname
                                                                         [fail]


o que posso fazer?

Quando instalei o LAMP passo a passo, sem utilizar o Synaptic não tive problemas, mas foi em outro sistema.


agente100gelo

Copie o conteúdo do arquivo /etc/apache2/sites-enabled/000-default. Olhe a linha 42.
Advogado e analista de sistema cearense.
Twitter: @glaydson

jcao

A linha 42 está em branco, abaixo está o código do arquivo em  /etc/apache2/sites-enabled/000-default


NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost

DocumentRoot /var/www/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
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 /var/log/apache2/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog /var/log/apache2/access.log combined
ServerSignature On

    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>
   
</VirtualHost>



o que deveria conter a linha 42? Ela é a que vem antes de </VirtualHost>


jcao

Desinstalei o LAMP e estou instalando manualmente sem o synaptic, mas agora ao testar o PHP recebo a seguinte mensagem

Citar
$ sudo /etc/init.d/apache2 restart
* Reloading web server config apache2
apache2: Could not reliably determine the server's fully qualified domain name,
using 127.0.1.1 for ServerName

Onde pode estar o erro? Não tenho idéia do que fazer.

jcao

Estou reinstalando o LAMP
comecei com o
apt-get install apache2 php5 libapache2-mod-php5
após isto executei
http://localhost/teste.php
e aí aparece a tela para abrir ou salvar ou abrir o arquivo teste.php em vez de executá-lo.

O que pode estar errado:?