You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Scott Haneda <li...@newgeo.com> on 2002/02/09 06:48:30 UTC

Funny stuff in my logs

I am at a loss, been running apache all of a few weeks, on OSX, forgive me
is this is a total newbie question

/var/log/httpd/error_log
jam packed with hundreds of lines, most one after the other, no date, no
time 
"statfs failed because: No such file or directory"
Any idea what this is?

---------------------------------------------------------------
Scott Haneda                                   lists@newgeo.com
http://www.newgeo.com                  Novato, California 94949
---------------------------------------------------------------


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs (last call :-) )

Posted by Hasanuddin Tamir <sa...@trabas.com>.
On Mon, 11 Feb 2002, Hasanuddin Tamir <sa...@trabas.com> wrote,

> On Sun, 10 Feb 2002, Scott Haneda <li...@newgeo.com> wrote,
>
> > on 2/9/02 9:15 PM, Steven Pierce at pagedev1@speakeasy.net wrote:
> >
> > > Sorry that I could not be more help.  One issue that I had thought of
> > > is that are you having it look for a file that is not there.  Have you also
> > > tried to access the site with a machine and see if there is a specific place
> > > you go when the error happens??
> > >
> > > I was thinking that maybe someone is trying to access the site and
> > > it is going to a page that is not there...
> >
> > Thanks for the help Steven
> >
> > Here is a summarization of where I am at now....
> >
> > First I did a grep -r 'statfs\ failed' \r /
> > To see if any files on the entire apache server had that line in it, if it
> > did, I could see where any why it was reporting this to to apache log,
> > nothing showed up.
> >
> > I thought maybe it was in a binary and I would not be able to read it with
> > grep, so off to download the source :-)
> >
> > Got source on Perl, Php, Apache
> > Grepped out all those, and nothing at all either.
> >
> > I ran tail on the error_log while watching the site requests, and I saw
> > nothing that correspnds with the lines in the error logs.
> >
> > Geberally, a apachectl graceful, will restart the server, and then, in about
> > 15 seconds, I get 4 lines in the error_log
> > statfs failed because: No such file or directory
> > statfs failed because: No such file or directory
> > statfs failed because: No such file or directory
> > statfs failed because: No such file or directory
> >
> > Then nothing for a while, maybe 5 minutes, then a few more, sometimes more
> > than 4, sometimes less.
> >
> > Had a few friends look into their error logs, all on OSX 10.1, and they also
> > are having this as well.  I am going to make a guess here, all apple OSX
> > boxes are going to have this, any ideas where to go next?
>
> The last thing I can think of is statfs is the name of C function.  So I
> tried 'man statfs' in my Linux box. Here is the first sentence from
> DESCRIPTION section: "statfs  returns  information about a mounted file
> system".
>
> If this is your case, the question is: what is it trying to stat.

>From perl-5.6.1 source tree:

    $ grep -r statfs *.[ch]
    perl.c: * Preferred order: fstatvfs(), fstatfs(), ustat()+getmnt(),
    getmntent().
    perl.c: * fstatfs() is 4.3 BSD.
    perl.c:    struct statfs  stfs;
    perl.c:    check_okay = fstatfs(fd, &stfs)  == 0;
    perl.c:#   endif /* fstatfs */
    perl.h:#   include <sys/mount.h>       /* for *BSD f?statfs() */
    perl.h:#   include <sys/statfs.h>      /* for some statfs() */
    perl.h:#    include <sys/vfs.h> /* for some statfs() */

Nothing from apache 1.3.22 source tree.


-- 
san->http(www.trabas.com)



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs (last call :-) )

Posted by Hasanuddin Tamir <sa...@trabas.com>.
On Sun, 10 Feb 2002, Scott Haneda <li...@newgeo.com> wrote,

> on 2/9/02 9:15 PM, Steven Pierce at pagedev1@speakeasy.net wrote:
>
> > Sorry that I could not be more help.  One issue that I had thought of
> > is that are you having it look for a file that is not there.  Have you also
> > tried to access the site with a machine and see if there is a specific place
> > you go when the error happens??
> >
> > I was thinking that maybe someone is trying to access the site and
> > it is going to a page that is not there...
>
> Thanks for the help Steven
>
> Here is a summarization of where I am at now....
>
> First I did a grep -r 'statfs\ failed' \r /
> To see if any files on the entire apache server had that line in it, if it
> did, I could see where any why it was reporting this to to apache log,
> nothing showed up.
>
> I thought maybe it was in a binary and I would not be able to read it with
> grep, so off to download the source :-)
>
> Got source on Perl, Php, Apache
> Grepped out all those, and nothing at all either.
>
> I ran tail on the error_log while watching the site requests, and I saw
> nothing that correspnds with the lines in the error logs.
>
> Geberally, a apachectl graceful, will restart the server, and then, in about
> 15 seconds, I get 4 lines in the error_log
> statfs failed because: No such file or directory
> statfs failed because: No such file or directory
> statfs failed because: No such file or directory
> statfs failed because: No such file or directory
>
> Then nothing for a while, maybe 5 minutes, then a few more, sometimes more
> than 4, sometimes less.
>
> Had a few friends look into their error logs, all on OSX 10.1, and they also
> are having this as well.  I am going to make a guess here, all apple OSX
> boxes are going to have this, any ideas where to go next?

The last thing I can think of is statfs is the name of C function.  So I
tried 'man statfs' in my Linux box. Here is the first sentence from
DESCRIPTION section: "statfs  returns  information about a mounted file
system".

If this is your case, the question is: what is it trying to stat.


hth
-- 
san->http(www.trabas.com)



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs (last call :-) )

Posted by Scott Haneda <li...@newgeo.com>.
on 2/9/02 9:15 PM, Steven Pierce at pagedev1@speakeasy.net wrote:

> Sorry that I could not be more help.  One issue that I had thought of
> is that are you having it look for a file that is not there.  Have you also
> tried to access the site with a machine and see if there is a specific place
> you go when the error happens??
> 
> I was thinking that maybe someone is trying to access the site and
> it is going to a page that is not there...

Thanks for the help Steven

Here is a summarization of where I am at now....

First I did a grep -r 'statfs\ failed' \r /
To see if any files on the entire apache server had that line in it, if it
did, I could see where any why it was reporting this to to apache log,
nothing showed up.

I thought maybe it was in a binary and I would not be able to read it with
grep, so off to download the source :-)

Got source on Perl, Php, Apache
Grepped out all those, and nothing at all either.

I ran tail on the error_log while watching the site requests, and I saw
nothing that correspnds with the lines in the error logs.

Geberally, a apachectl graceful, will restart the server, and then, in about
15 seconds, I get 4 lines in the error_log
statfs failed because: No such file or directory
statfs failed because: No such file or directory
statfs failed because: No such file or directory
statfs failed because: No such file or directory

Then nothing for a while, maybe 5 minutes, then a few more, sometimes more
than 4, sometimes less.

Had a few friends look into their error logs, all on OSX 10.1, and they also
are having this as well.  I am going to make a guess here, all apple OSX
boxes are going to have this, any ideas where to go next?





---------------------------------------------------------------
Scott Haneda                                   lists@newgeo.com
http://www.newgeo.com                  Novato, California 94949
---------------------------------------------------------------


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Steven Pierce <pa...@speakeasy.net>.
Scott,

Sorry that I could not be more help.  One issue that I had thought of
is that are you having it look for a file that is not there.  Have you also
tried to access the site with a machine and see if there is a specific place
you go when the error happens??

I was thinking that maybe someone is trying to access the site and
it is going to a page that is not there...

Just a thought...

*********** REPLY SEPARATOR  ***********

On 2/9/2002 at 12:58 PM Scott Haneda wrote:

>on 2/9/02 8:07 AM, Steven Pierce at pagedev1@speakeasy.net wrote:
>
>> 
>> Any idea on the file that it is trying to access??  I spent about an hr
>> on the net last night look for this error.  I could not find anything
>that
>> was UNDER MAC.  Things for Linux, etc.   The one thing that I
>> did find was that it was something that was expected under OS X.
>> It appears though that it was for the pre-release of X.
>
>I have no idea, that is all that is in the log, if I tail on the log, I can
>see them happening, is there something I can do to see what caused it,
>would
>changing the log level help perhaps?
>
>---------------------------------------------------------------
>Scott Haneda                                   lists@newgeo.com
>http://www.newgeo.com                  Novato, California 94949
>---------------------------------------------------------------
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Scott Haneda <li...@newgeo.com>.
on 2/9/02 8:07 AM, Steven Pierce at pagedev1@speakeasy.net wrote:

> 
> Any idea on the file that it is trying to access??  I spent about an hr
> on the net last night look for this error.  I could not find anything that
> was UNDER MAC.  Things for Linux, etc.   The one thing that I
> did find was that it was something that was expected under OS X.
> It appears though that it was for the pre-release of X.

I have no idea, that is all that is in the log, if I tail on the log, I can
see them happening, is there something I can do to see what caused it, would
changing the log level help perhaps?

---------------------------------------------------------------
Scott Haneda                                   lists@newgeo.com
http://www.newgeo.com                  Novato, California 94949
---------------------------------------------------------------


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Steven Pierce <pa...@speakeasy.net>.

Any idea on the file that it is trying to access??  I spent about an hr
on the net last night look for this error.  I could not find anything that
was UNDER MAC.  Things for Linux, etc.   The one thing that I
did find was that it was something that was expected under OS X.
It appears though that it was for the pre-release of X.



*********** REPLY SEPARATOR  ***********

On 2/8/2002 at 11:10 PM Scott Haneda wrote:

>on 2/8/02 10:37 PM, Steven Pierce at pagedev1@speakeasy.net wrote:
>
>> 
>> 
>> Scott,
>> 
>> How about a little more information on this.  What exactly are the logs
>> showing
>> you?  Also what is happening when it happens??
>
>I really wish I could tell you more, that is what is so baffling
>
>More /var/log/httpd/error_log
>All it says is 
>statfs failed because: No such file or directory
>
>
>That¹s it, no time, no date, nothing, just 15-20 lines of it, then nothing
>for a little while, then another 15-20 lines, on and on.
>
>---------------------------------------------------------------
>Scott Haneda                                   lists@newgeo.com
>http://www.newgeo.com                  Novato, California 94949
>---------------------------------------------------------------
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Scott Haneda <li...@newgeo.com>.
on 2/8/02 10:37 PM, Steven Pierce at pagedev1@speakeasy.net wrote:

> 
> 
> Scott,
> 
> How about a little more information on this.  What exactly are the logs
> showing
> you?  Also what is happening when it happens??

I really wish I could tell you more, that is what is so baffling

More /var/log/httpd/error_log
All it says is 
statfs failed because: No such file or directory


That¹s it, no time, no date, nothing, just 15-20 lines of it, then nothing
for a little while, then another 15-20 lines, on and on.

---------------------------------------------------------------
Scott Haneda                                   lists@newgeo.com
http://www.newgeo.com                  Novato, California 94949
---------------------------------------------------------------


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Steven Pierce <pa...@speakeasy.net>.

Scott, 

How about a little more information on this.  What exactly are the logs showing
you?  Also what is happening when it happens?? 



*********** REPLY SEPARATOR  ***********

On 2/8/2002 at 9:48 PM Scott Haneda wrote:

>I am at a loss, been running apache all of a few weeks, on OSX, forgive me
>is this is a total newbie question
>
>/var/log/httpd/error_log
>jam packed with hundreds of lines, most one after the other, no date, no
>time 
>"statfs failed because: No such file or directory"
>Any idea what this is?
>
>---------------------------------------------------------------
>Scott Haneda                                   lists@newgeo.com
>http://www.newgeo.com                  Novato, California 94949
>---------------------------------------------------------------
>
>
>---------------------------------------------------------------------
>The official User-To-User support forum of the Apache HTTP Server Project.
>See <URL:http://httpd.apache.org/userslist.html> for more info.
>To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>For additional commands, e-mail: users-help@httpd.apache.org




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Funny stuff in my logs

Posted by Webmaster <we...@rolysvirtualpets.com>.
statfs is a module/cgi script i beleive.

Scott Haneda wrote:
> 
> I am at a loss, been running apache all of a few weeks, on OSX, forgive me
> is this is a total newbie question
> 
> /var/log/httpd/error_log
> jam packed with hundreds of lines, most one after the other, no date, no
> time
> "statfs failed because: No such file or directory"
> Any idea what this is?
> 
> ---------------------------------------------------------------
> Scott Haneda                                   lists@newgeo.com
> http://www.newgeo.com                  Novato, California 94949
> ---------------------------------------------------------------
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org