Jirong Hu <[email protected]> writes: > I just run another test. When I start the httpd, this message appears in > the error.log. I have to shut it down immediately. I am wondering which > product/process I am using will automatically send request to git? Maven, > TeamCity, Artifactory? I am not running any builds or scheduled. What will > constantly send request to access GIT?
> [Thu Dec 11 14:16:50 2014] [notice] suEXEC mechanism enabled (wrapper: > /usr/sbin/suexec) > [Thu Dec 11 14:16:50 2014] [notice] Digest: generating secret for digest > authentication ... > [Thu Dec 11 14:16:50 2014] [notice] Digest: done > [Thu Dec 11 14:16:50 2014] [notice] Apache/2.2.15 (Unix) DAV/2 configured > -- resuming normal operations > [Thu Dec 11 14:17:12 2014] [error] [client 10.193.20.116] user jhu06: > authentication failure for "/opt/git/web-app.git/info/refs": Password > Mismatch > [Thu Dec 11 14:17:25 2014] [notice] caught SIGTERM, shutting down > [root@cmtoldshrdjk01 logs]# It is difficult to determine what is accessing Apache here. You do know that it is running on host 10.193.20.116. Do you know what host that is, and what activities happen on it? One way to determine that is to run a command like "while sleep 0.1 ; do ( date ; netstat --inet -p )>>/tmp/log ; done" as root on that host. It will capture a detailed list of all processes that are making TCP connections. Then check this list against the Apache log to see what program is connecting to Apache. Given the line "DAV/2 configured", it appears that Apache is configured to support DAV. That means that a DAV client might be attempting to access the server. If you disable DAV in the Apache configuration and the error does *not* appear, that suggests the problem is due to some DAV client attempting to perform some operation. But better would be to examine the Apache logs to determine exactly what the request was. If the logs do not contain enough information, you should tell Apache to log more verbosely. Dale -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
