問題:
19/06/10更新:より多くの証拠の問題はサーバー側にあります。Windows 7コマンドラインでこのエラーを受け取る(完全なトレースバックについては、以下を参照してください)。
URLError: <urlopen error [Errno 10054] An existing connection was forcibly closed by the remote host>
abort: error: An existing connection was forcibly closed by the remote host
6つの大きなファイル(.exe、.dmgなど)を含むチェンジセットをリモートサーバーにプッシュしようとすると、クライアント(MacHG)がエラーを報告します。
「プッシュ中にエラーが発生しました。Mercurialがエラー番号255を報告しました:中止:HTTPエラー404:見つかりません」
エラーはどういう意味ですか?!このコミットについて(私が知ることができる)唯一のユニークなことは、ファイルのサイズ、タイプ、およびファイル名です。チェンジセット内のどのファイルが失敗しているかをどのように判断できますか?破損したチェンジセットをリポジトリから削除するにはどうすればよいですか?別の投稿で、誰かが「mq」拡張機能を使用してリポジトリ内の履歴から誤ったチェンジセットを効果的に削除したと報告しましたが、mqは私が解決しようとしていることに対して非常に複雑に見えます。
バックグラウンド:
MacHGとtoirtoiseHGの両方を使用して、サーバーとの間でソースファイル、ディレクトリ、.classファイル、および.jarファイルをプッシュおよびプルできます。
6つの大きな.exe、.dmgなどのインストーラーファイル(合計約130Mb)を初めてローカルリポジトリに追加することに成功しました。
次のローカルリポジトリへのコミットでは、問題の原因となっている6つのファイルを削除(「追跡されていない」/忘れる)しましたが、以前の(失敗した)チェンジセットはサーバーにプッシュされるようにキューに入れられています(つまり、ローカルホストがプッシュしようとしています)リモートサーバーに「追加」してから「削除」し、ソース管理システムの「すべてを履歴に保持する」という哲学に沿った状態を維持します。
WindowsPCからTortoiseHGを使用して.txt.javaファイルなどをコミットできます。TortoiseHGを使用して同じ大きなファイルをコミットまたはプッシュすることを実際にテストしていません。
助けてください!
設定:
クライアントアプリケーション=MacHGv0.9.7(SCM 1.5.4)、およびTortoiseHG v1.0.4(SCM 1.5.4)
サーバー=HTTPS、IIS7.5、Mercurial 1.5.4、Python 2.6.5、次の手順を使用してセットアップします。
http://www.jeremyskinner.co.uk/mercurial-on-iis7/
IIS7.5では、CGIハンドラーはすべての動詞(GET、POST、およびHEADだけでなく)を処理するように構成されています。
サーバー上のhgweb.cgiファイルは次のとおりです。
#!/usr/bin/env python
#
# An example hgweb CGI script, edit as necessary
# Path to repo or hgweb config to serve (see 'hg help hgweb')
#config = "/path/to/repo/or/config"
# Uncomment and adjust if Mercurial is not installed system-wide:
#import sys; sys.path.insert(0, "/path/to/python/lib")
# Uncomment to send python tracebacks to the browser if an error occurs:
#import cgitb; cgitb.enable()
from mercurial import demandimport; demandimport.enable()
from mercurial.hgweb import hgweb, wsgicgi
application = hgweb('C:\inetpub\wwwroot\hg\hgweb.config')
wsgicgi.launch(application)
サーバー上のhgweb.configファイルは次のとおりです。
[collections]
C:\Mercurial Repositories = C:\Mercurial Repositories
[web]
baseurl = /hg
allow_push = usernamea
allow_push = usernameb
-vフラグと--trackbackフラグを使用して、MacBook(MercurialとMacHGの両方がインストールされている)のコマンドラインから出力します。
macbook15:hgrepos coderunner$ hg -v --traceback push
pushing to https://coderunner:***@hg.mydomain.com.au/hg/hgrepos
searching for changes
3 changesets found
Traceback (most recent call last):
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 50, in _runcatch
return _dispatch(ui, args)
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 471, in _dispatch
return runcommand(lui, repo, cmd, fullargs, ui, options, d)
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 341, in runcommand
ret = _runcommand(ui, options, cmd, d)
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 522, in _runcommand
return checkargs()
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 476, in checkargs
return cmdfunc()
File "/Library/Python/2.6/site-packages/mercurial/dispatch.py", line 470, in <lambda>
d = lambda: util.checksignature(func)(ui, *args, **cmdoptions)
File "/Library/Python/2.6/site-packages/mercurial/util.py", line 401, in check
return func(*args, **kwargs)
File "/Library/Python/2.6/site-packages/mercurial/commands.py", line 2462, in push
r = repo.push(other, opts.get('force'), revs=revs)
File "/Library/Python/2.6/site-packages/mercurial/localrepo.py", line 1491, in push
return self.push_unbundle(remote, force, revs)
File "/Library/Python/2.6/site-packages/mercurial/localrepo.py", line 1636, in push_unbundle
return remote.unbundle(cg, remote_heads, 'push')
File "/Library/Python/2.6/site-packages/mercurial/httprepo.py", line 235, in unbundle
heads=' '.join(map(hex, heads)))
File "/Library/Python/2.6/site-packages/mercurial/httprepo.py", line 134, in do_read
fp = self.do_cmd(cmd, **args)
File "/Library/Python/2.6/site-packages/mercurial/httprepo.py", line 85, in do_cmd
resp = self.urlopener.open(req)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 389, in open
response = meth(req, response)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 502, in http_response
'http', request, response, code, msg, hdrs)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 427, in error
return self._call_chain(*args)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 361, in _call_chain
result = func(*args)
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib2.py", line 510, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 404: Not Found
abort: HTTP Error 404: Not Found
macbook15:hgrepos coderunner$
同じファイルをサーバーにプッシュしようとしているWindows7ホスト(TortoiseHGのみがインストールされている)からの出力(異なるチェンジセットですが、MacBookからプッシュされているチェンジセットと同じ6つのファイル追加が含まれています)
c:\repositories\hgrepos>hg -v --traceback push
pushing to https://coderunner:***@hg.mydomain.com.au/hg/hgrepos
searching for changes
1 changesets found
Traceback (most recent call last):
File "mercurial\dispatch.pyo", line 50, in _runcatch
File "mercurial\dispatch.pyo", line 471, in _dispatch
File "mercurial\dispatch.pyo", line 341, in runcommand
File "mercurial\dispatch.pyo", line 522, in _runcommand
File "mercurial\dispatch.pyo", line 476, in checkargs
File "mercurial\dispatch.pyo", line 470, in <lambda>
File "mercurial\util.pyo", line 401, in check
File "mercurial\commands.pyo", line 2462, in push
File "mercurial\localrepo.pyo", line 1491, in push
File "mercurial\localrepo.pyo", line 1636, in push_unbundle
File "mercurial\httprepo.pyo", line 235, in unbundle
File "mercurial\httprepo.pyo", line 134, in do_read
File "mercurial\httprepo.pyo", line 85, in do_cmd
File "urllib2.pyo", line 389, in open
File "urllib2.pyo", line 407, in _open
File "urllib2.pyo", line 367, in _call_chain
File "mercurial\url.pyo", line 523, in https_open
File "mercurial\keepalive.pyo", line 259, in do_open
URLError: <urlopen error [Errno 10054] An existing connection was forcibly closed by the remote host>
abort: error: An existing connection was forcibly closed by the remote host
c:\repositories\hgrepos>
それは生き続ける問題ですか?IIS7.5に問題がありますか?Python 2.6.5に問題がありますか?