log de apache2 ?

Sevidores http, virtualhosts, CMSs,

Moderadores: frank, dxfiles

Avatar de Usuario
nerdhacker
Mensajes: 38
Registrado: Jue, 12 May 2011, 04:17
Ubicación: Vedado
Contactar:

log de apache2 ?

Mensaje por nerdhacker » Vie, 13 May 2011, 03:18

estoy teniendo este error al iniciar mi servidor apache local, alguien puede decirme donde encuentro el archivo log de apache?

Código: Seleccionar todo

nerdhacker@Inspiron-1545:~$ sudo /etc/init.d/apache2 start
[sudo] password for nerdhacker: 
 * Starting web server apache2                                                                                                                                          apache2: Syntax error on line 230 of /etc/apache2/apache2.conf: Could not open configuration file /etc/apache2/sites-enabled/000-default: No such file or directory
Action 'start' failed.
The Apache error log may have more information.
Ubuntu 11.04 - the Natty Narwhal
VIVA FRAGGLE ROCK!

Avatar de Usuario
KZKG^Gaara
Mensajes: 463
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /dev/kzkggaara
Contactar:

Re: log de apache2 ?

Mensaje por KZKG^Gaara » Vie, 13 May 2011, 11:23

/var/log/apache2/error.log
/var/log/apache2/access.log


Revisa si el archivo /etc/apache2/sites-enabled/000-default existe en realidad...
~~» KZKG^Gaara «~~
Usuario #518082 de GNU/Linux
Windows ha detectado que no tiene teclado... presione [F9] para continuar.

Avatar de Usuario
elav
Mensajes: 628
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /var/www/foro
Contactar:

Re: log de apache2 ?

Mensaje por elav » Vie, 13 May 2011, 11:25

Crea el fichero y ponle esto adentro:

Código: Seleccionar todo

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>
” ... Hacer uso de Software Libre es sentir entre tus manos, palpable y predecible, esa necesidad básica llamada Libertad al que todo ser humano aspira y que muchos por desconocimiento, o simplemente por no entenderlo, nunca podrán tener ... ”

103
Mensajes: 335
Registrado: Sab, 12 Feb 2011, 16:51

Re: log de apache2 ?

Mensaje por 103 » Vie, 13 May 2011, 11:46

Habrá "tocado" algo porque este archivo se crea por defecto cuando se instala Apache.

Avatar de Usuario
nerdhacker
Mensajes: 38
Registrado: Jue, 12 May 2011, 04:17
Ubicación: Vedado
Contactar:

pre solutioned

Mensaje por nerdhacker » Vie, 13 May 2011, 17:29

pre solucionado pero aun me saca un par de warnings.

Código: Seleccionar todo

nerdhacker@Inspiron-1545:~$ sudo /etc/init.d/apache2 start
 * Starting web server apache2                                                                                                                                          apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Fri May 13 17:21:58 2011] [warn] NameVirtualHost *:0 has no VirtualHosts
[Fri May 13 17:21:58 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
el problema estuvo que no se porque razon se borro el archivo default en la ruta /etc/apache2/sites-available , tal vez fue metiendo el dedo donde no debi en el webmin.

solution


crear el archivo "default" en la ruta /etc/apache2/sites-available nuevamente y pegarle el codigo que me brindo @elav

Código: Seleccionar todo

    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>
@elav porke me esta dando estos warnings al iniciarse apache?? antes no salian

[Fri May 13 17:21:58 2011] [warn] NameVirtualHost *:0 has no VirtualHosts
[Fri May 13 17:21:58 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
Ubuntu 11.04 - the Natty Narwhal
VIVA FRAGGLE ROCK!

Avatar de Usuario
elav
Mensajes: 628
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /var/www/foro
Contactar:

Re: log de apache2 ?

Mensaje por elav » Vie, 13 May 2011, 17:54

A lo mejor tiene que ver con la versión de apache que estás usando. Tomé como ejemplo el fichero que trae Apache 2.2.8-1 en Ubuntu Hardy, por lo que supongo que tu Apache está más actualizado.. Trata poniendo las lineas asi:

Esta:

Código: Seleccionar todo

    NameVirtualHost *
    <VirtualHost *>
       ServerAdmin webmaster@localhost
Asi:

Código: Seleccionar todo

    NameVirtualHost *
    <VirtualHost *:80>
       ServerAdmin webmaster@localhost
o asi:

Código: Seleccionar todo

    NameVirtualHost *:80
    <VirtualHost *:80>
       ServerAdmin webmaster@localhost
Prueba a ver.
” ... Hacer uso de Software Libre es sentir entre tus manos, palpable y predecible, esa necesidad básica llamada Libertad al que todo ser humano aspira y que muchos por desconocimiento, o simplemente por no entenderlo, nunca podrán tener ... ”

Avatar de Usuario
nerdhacker
Mensajes: 38
Registrado: Jue, 12 May 2011, 04:17
Ubicación: Vedado
Contactar:

el mismo perro con diferente collar

Mensaje por nerdhacker » Vie, 13 May 2011, 18:21

igual este es el resultado y dos veces

Código: Seleccionar todo

nerdhacker@Inspiron-1545:~$ sudo /etc/init.d/apache2 restart
 * Restarting web server apache2                                                                                                                                        apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Fri May 13 18:20:24 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
[Fri May 13 18:20:24 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
 ... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Fri May 13 18:20:25 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
[Fri May 13 18:20:25 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
Ubuntu 11.04 - the Natty Narwhal
VIVA FRAGGLE ROCK!

Avatar de Usuario
elav
Mensajes: 628
Registrado: Sab, 07 Ago 2010, 14:09
Ubicación: /var/www/foro
Contactar:

Re: el mismo perro con diferente collar

Mensaje por elav » Sab, 14 May 2011, 08:53

nerdhacker escribió:igual este es el resultado y dos veces

Código: Seleccionar todo

nerdhacker@Inspiron-1545:~$ sudo /etc/init.d/apache2 restart
 * Restarting web server apache2                                                                                                                                        apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Fri May 13 18:20:24 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
[Fri May 13 18:20:24 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
 ... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Fri May 13 18:20:25 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
[Fri May 13 18:20:25 2011] [warn] NameVirtualHost *:80 has no VirtualHosts
Prueba quitar el NameVirtualHost *
” ... Hacer uso de Software Libre es sentir entre tus manos, palpable y predecible, esa necesidad básica llamada Libertad al que todo ser humano aspira y que muchos por desconocimiento, o simplemente por no entenderlo, nunca podrán tener ... ”

Avatar de Usuario
nelson
Mensajes: 304
Registrado: Vie, 15 Oct 2010, 15:52
Ubicación: /home/Ciudad de La Habana/
Contactar:

Re: log de apache2 ?

Mensaje por nelson » Sab, 14 May 2011, 17:05

Hola, estoy utilizando la version 2.2.14 en lucid, estas son mis lineas del archivo /etc/apache2/sites-available/default
a ver si asi se resuelve el problema:

Código: Seleccionar todo

<VirtualHost *:80>
	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 /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

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

</VirtualHost>
No veo mucha diferencia con el de elav, solamente en el NameVirtualHost, que el mio no lo tiene.
Saludos
# uname -a
Linux huracan 3.0.3 #1 SMP Tue Aug 30 21:31:02 CDT 2011 i686 GNU/Linux

Avatar de Usuario
frizquierdo10
Mensajes: 36
Registrado: Mié, 13 Oct 2010, 12:49

Re: log de apache2 ?

Mensaje por frizquierdo10 » Mar, 17 May 2011, 08:38

Bueno para ese error (apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName), solo tienes que asignarle en el fichero de configuración del apache (/etc/apache2/apache2.conf),a la directiva ServerName el valor localhost

Saludos

Responder