Re: [git-users] user jhu06: authentication failure for /opt/git/web-app.git/info/refs: Password Mismatch

2014-12-11 Thread Jirong Hu
everywhere in all products I am using LDAP to authenticate. That's why when 
this happens, my domain id will be locked.

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]#

-- 
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 git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] user jhu06: authentication failure for /opt/git/web-app.git/info/refs: Password Mismatch

2014-12-11 Thread Dale R. Worley
Jirong Hu jirong...@gmail.com 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 git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] user jhu06: authentication failure for /opt/git/web-app.git/info/refs: Password Mismatch

2014-12-10 Thread Dale R. Worley
Jirong Hu jirong...@gmail.com writes:
 I have a GIT running on a Linux server. When I start the httpd service on 
 the server, login with my id/password to 
 http://cmtoldshrdjk01.dev.bmocm.com/web-app2.git/, my account got locked 
 due to the following error found in the error.log

 Where shall I look for the issue?

 [Tue Dec 09 16:12:55 2014] [error] [client 10.193.20.116] user jhu06: 
 authentication failure for /opt/git/web-app.git/info/refs: Password 
 Mismatch
 [Tue Dec 09 16:13:13 2014] [error] [client 10.115.110.172] File does not 
 exist: /opt/git/favicon.ico

Do the user name and password you are using match the password file that
httpd is using to authenticate requests?  (It probably isn't
/etc/passwd.)

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 git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.