[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

christ...@quelltextlich.at changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #30 from christ...@quelltextlich.at ---
The fix has been deployed at gerrit.wikimedia.org.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #31 from Bartosz Dziewoński matma@gmail.com ---
3

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #32 from Ori Livneh o...@wikimedia.org ---
(In reply to christian from comment #28)
 Since this bug has been around for a while and has affected quite some
 people, I've been asked to give a short explanation of the root issue
 and what SSHD-330 does.
 
 Gerrit uses Apache Mina's SSHD [1] as ssh server. When connecting to
 gerrit through ssh, this ssh server uses Java's own crypto/security
 implementations to negotiate session keys (i.e.: different for each
 connection attempt) with the client. Java's default provider yielded
 those session keys without leading zero bytes, and Apache Mina's SSHD
 relied on no leading zero bytes being present.
 
 But at some point Java [2] changed behaviour and is no longer
 stripping leading zero bytes, but Apache Mina SSHD still relied on no
 leading zero bytes being present. Hence assumptions mismatched and
 caused the issue.
 
 The Java we use at gerrit.wikimedia.org is recent enough to no longer
 strip leading zero bytes. So when connecting to our gerrit through
 ssh, either
 
 * the negotiated session key starts with a non-zero byte, and
   everything works nicely. This case happens most of the time.
 
 * the negotiated session key starts with a zero byte. Then gerrit's
   built-in Apache Mina SSHD falsely treats the key as if there were no
   leading zero bytes and the connection setup with the client fails.
 
 SSHD-330 adds stripping of leading zero bytes from the session key to
 Apache Mina SSHD and thereby fixes the issue we are seeing.
 
 --
 
 There was recently some FUD around OpenSSL generated keys not being
 affected. That did not work for me, and I do not see in code how this
 would make a difference.
 
 Also, there was some recent discussion around extracting the keys from
 the keystore to proper files. I did not get a chance to try that, but
 that could do the trick too ... indirectly.
 Because in order to get gerrit to use keys from separate files, one
 needs to install BouncyCastle libraries to gerrit. BouncyCastle will
 act as provider for the needed security/crypto functionality and
 get used instead of Java's default providers. As the BouncyCastle
 providers (for now) also strip the leading zero bytes, that could
 work out.
 
 Regardless, having Apache Mina SSHD to strip leading zero bytes seems
 most reliable, so we backported the Apache Mina SSHD's upstream fix to
 the version used in our gerrit, and rebuilt gerrit using that custom
 built Apache Mina SSHD.
 
 [1] https://mina.apache.org/sshd-project/
 [2] I know that OpenJDK versions up to
   OpenJDK Runtime Environment (IcedTea7 2.2.1) (Gentoo build 1.7.0_05-b21)
 work and the default providers strip the leading zeros, while the ones from
   OpenJDK Runtime Environment (IcedTea 2.4.7) (7u55-2.4.7-1ubuntu1~0.12.04.2)
 do not strip them.
 
 
 Thanks Krinkle for the pointer to SSHD-330!

And thank you for the analysis and the informative summary -- well done!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #25 from Antoine hashar Musso has...@free.fr ---
Christian could you possibly providee a gerrit.war  that has the patch ? I
would like to test it out on the labs instance I am using for CI dev. Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #26 from christ...@quelltextlich.at ---
(In reply to Antoine hashar Musso from comment #25)
 Christian could you possibly providee a gerrit.war  that has the patch ?

Sure. For the next 2 weeks, you can fetch it from

  http://quelltextlich.at/gerrit-2.8.1-4-ga1048ce.war

 I
 would like to test it out on the labs instance I am using for CI dev.

Seeing the description of SSHD-330 allowed me to come up with an environment
that allows to reproduce the bug. There, our deployed gerrit war failed for
14 of 1 connection attempts. The war I linked above showed 0 failures for
1 connection attempts.

^d already said he'll discuss deploying the war with greg-g. So we'll
hopefully see it live soon.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #27 from Antoine hashar Musso has...@free.fr ---
I have upgraded Gerrit on my test instance integration-dev.eqiad.wmflabs .
There is no more any hash mismatch triggered when running for a while:

while true; do ssh -p 29418 localhost; done;

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #29 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 143388 merged by Chad:
Upgrade sshd to include the fix for hash mismatch

https://gerrit.wikimedia.org/r/143388

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #23 from christ...@quelltextlich.at ---
The description of the SSHD-330 issue explains pretty much every aspect of
the bug that we experienced.

From it's sporadic nature to the ways some people could reproduce, but others
couldn't.

I'll see to preparing a new gerrit release ... hopefully we can get something
deployed around that.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Gerrit Notification Bot gerritad...@wikimedia.org changed:

   What|Removed |Added

 Status|NEW |PATCH_TO_REVIEW

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-07-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #24 from Gerrit Notification Bot gerritad...@wikimedia.org ---
Change 143388 had a related patch set uploaded by QChris:
Upgrade sshd to include the fix for hash mismatch

https://gerrit.wikimedia.org/r/143388

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Krinkle krinklem...@gmail.com changed:

   What|Removed |Added

 CC||krinklem...@gmail.com

--- Comment #22 from Krinkle krinklem...@gmail.com ---
The google group topic mentioned this issue in Apache mina-sshd (upstream from
Gerrit):

https://issues.apache.org/jira/browse/SSHD-330

Which has been fixed in
https://git-wip-us.apache.org/repos/asf?p=mina-sshd.git;a=commit;h=2aed686bdb21681a421033c6ee5997e5cd8a9a83

If that is indeed the root issue, we them to make a minor release and Gerrit to
upgrade to it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #20 from Antoine hashar Musso has...@free.fr ---
Bartosz: there is no need more for more examples.  We have traces of those
errors in Zuul log and it happens a couple time per day.

Marcin: we could tcpdump it if only we had a way to reliably reproduce the
issue :-(

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #21 from Paul Bourke paul.bou...@wonga.com ---
Hi, I've been able to reproduce this on a local Gerrit instance quite reliably
by running the following:

while true; do ssh gerrit -p 29418; done

A workaround that does work is to use the bouncy castle SSL library.  See the
following thread for more info:
https://groups.google.com/forum/#!topic/repo-discuss/JE7OM6o7DMs

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #19 from Bartosz Dziewoński matma@gmail.com ---
Two examples from just today:
* https://gerrit.wikimedia.org/r/#/c/139807/
* https://gerrit.wikimedia.org/r/#/c/140046/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #18 from Bartosz Dziewoński matma@gmail.com ---
Today again: https://gerrit.wikimedia.org/r/#/c/139047/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #16 from Bartosz Dziewoński matma@gmail.com ---
Subsided for a while, then started happening a bit more often for me locally.
Example in Gerrit from today: https://gerrit.wikimedia.org/r/#/c/138992/1

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-06-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #17 from Marcin Cieślak marcin.cies...@gmail.com ---
Could somebody tcpdump it? It seems it me more like a broken (suddenly
terminated) connection, probably occuring (mostly) early in the SSH negotiation
phase.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-03-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Greg Grossmeier g...@wikimedia.org changed:

   What|Removed |Added

   Priority|Unprioritized   |High
 CC||g...@wikimedia.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #15 from Bartosz Dziewoński matma@gmail.com ---
This continues to happen, nearly daily.

You could probably get a good list of affected changesets by grepping logs of
#wikimedia-dev for my name and ignore jenkins :/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-02-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Bartosz Dziewoński matma@gmail.com changed:

   What|Removed |Added

  Alias||hash-mismatch

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-02-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #14 from Antoine hashar Musso has...@free.fr ---
Another example, this time with the job that sync VisualEditor in
mediawiki/extensions.git.  The merge of
https://gerrit.wikimedia.org/r/#/c/111608/ triggered job
http://integration.wikimedia.org/ci/job/mwext-VisualEditor-sync-gerrit/61/console
which shows:

  ssh -i /var/lib/jenkins/.ssh/jenkins-mwext-sync_id_rsa \
-p 29418 jenkins-mwext-s...@gerrit.wikimedia.org \
'gerrit review --code-review +2 --verified +2 --submit
b519550809bba725b017281fe6c33c4c2fd123c1'
  hash mismatch
  key_verify failed for server_host_key

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-01-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #13 from Antoine hashar Musso has...@free.fr ---
(In reply to comment #12)
 Is this related: https://gerrit.wikimedia.org/r/#/c/107036/ ?

Looking at Zuul debugging log on gallium.wikimedia.org it is a different issue.
Filled another bug 59991 for it. Seems to be an issue in the python git module.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2014-01-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Ed Sanders esand...@wikimedia.org changed:

   What|Removed |Added

 CC||esand...@wikimedia.org

--- Comment #12 from Ed Sanders esand...@wikimedia.org ---
Is this related: https://gerrit.wikimedia.org/r/#/c/107036/ ?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 CC||matma@gmail.com

--- Comment #9 from Antoine hashar Musso has...@free.fr ---
*** Bug 57483 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|REOPENED|NEW
 CC||has...@free.fr
Summary|Gerrit SSH: Intermittent|Gerrit SSH: Intermittent
   |key_verify failed for   |key_verify failed for
   |server_host_key |server_host_key and 'hash
   ||mismatch'

--- Comment #10 from Antoine hashar Musso has...@free.fr ---
That does happen once or two per day on Zuul. Usually hash mismatch errors
though we had some host key verification failed on Nov 20th.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key and 'hash mismatch'

2013-12-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #11 from Niklas Laxström niklas.laxst...@gmail.com ---
Also got one today in command line.

FYI: the -1s in Jenkins caused by this are very confusing.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key

2013-10-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

--- Comment #7 from Ori Livneh o...@wikimedia.org ---
Just happened to me w/operations/puppet.

$ git pull
hash mismatch
key_verify failed for server_host_key
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key

2013-10-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Siebrand Mazeland s.mazel...@xs4all.nl changed:

   What|Removed |Added

 CC||raimond.spekk...@gmail.com

--- Comment #8 from Siebrand Mazeland s.mazel...@xs4all.nl ---
(In reply to comment #7)
 Just happened to me w/operations/puppet.
 
 $ git pull
 hash mismatch
 key_verify failed for server_host_key
 fatal: Could not read from remote repository.
 
 Please make sure you have the correct access rights
 and the repository exists.

We see similar errors very regularly when updating 600 or so extension repos at
translatewiki.net. I'm pretty certain that we have the correct access rights
with L10n-bot, have the correct access rights at the local machine, and have
consistent scripting up update the repos.

A run I did just now resulted in the following errors:

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/CategoryMagicWords failed
to update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/ReplaceSet failed to update

Just to make sure that it wasn't me configuring the two above repos
incorrectly, I ran the updates again. This time with the following result:

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/DidYouKnow failed to update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/FormatDates failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/GoogleDocTag failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/InviteSignup failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/LightweightRDFa failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/Numbertext failed to update

/resources/siebrand/mediawiki-extensions/extensions/NumberOfWikis failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/PageLanguage failed to
update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch origin
/resources/siebrand/mediawiki-extensions/extensions/SidebarDonateBox failed to
update

hash mismatch
key_verify failed for server_host_key
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/UserStatus failed to update

Permission denied (publickey).
fatal: The remote end hung up unexpectedly
error: Could not fetch gerrit
/resources/siebrand/mediawiki-extensions/extensions/VersionView failed to
update



To compare, when updating repos on localhost form GitHub, I've not seen a
similar error once.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key

2013-09-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Ori Livneh o...@wikimedia.org changed:

   What|Removed |Added

 CC||o...@wikimedia.org
Summary|translatewiki.net: git  |Gerrit SSH: Intermittent
   |fetch ... bails out with|key_verify failed for
   |hash mismatch key_verify |server_host_key
   |failed for server_host_key |

--- Comment #5 from Ori Livneh o...@wikimedia.org ---
Several reports of this in the last few days. Reporters include Krenair,
YuviPanda, and Krinkle.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 53895] Gerrit SSH: Intermittent key_verify failed for server_host_key

2013-09-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=53895

Yuvi Panda yuvipa...@gmail.com changed:

   What|Removed |Added

 CC||yuvipa...@gmail.com

--- Comment #6 from Yuvi Panda yuvipa...@gmail.com ---
(Worked for me when I tried again)

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l