Ошибка настройки Mercurial на Windows Server 2008 - PullRequest
5 голосов
/ 23 января 2010

Я хочу настроить сервер Mercurial SC и следую инструкциям, найденным здесь: http // stackoverflow.com / questions / 818571 / как настроить mercurial-and-hgwebdir-on-iis

Я проверил все свои настройки несколько раз и, похоже, не прошел эту ошибку после завершения конфигурации. Любой совет будет полезен. Спасибо.

Server Error in Application "DEFAULT WEB SITE/HG"Internet Information Services 7.5

Error Summary
HTTP Error 502.2 - Bad Gateway
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are "Traceback (most recent call last): File "C:\inetpub\hgcgi\hgwebdir.cgi", line 12, in <module> from mercurial import demandimport; demandimport.enable() ImportError: No module named mercurial ". Detailed Error InformationModule CgiModule
Notification ExecuteRequestHandler
Handler Python 2.5
**Error Code 0x00000001**
Requested URL http://localhost:80/hg/hgwebdir.cgi
Physical Path C:\inetpub\hgcgi\hgwebdir.cgi
Logon Method Anonymous
Logon User Anonymous
 Most likely causes:
The CGI process was shut down or terminated unexpectedly before it finished processing the request.
The CGI process has a flaw and does not return a complete set of HTTP headers.
 Things you can try:
Check the event logs on the system to see whether the CGI process is shutting down unexpectedly.
Troubleshoot the CGI application to determine why it is not sending a complete set of HTTP headers. 

1 Ответ

6 голосов
/ 25 января 2010

Трассировка в очень длинной строке говорит о том, что mercurial не найден в вашем PYTHON_PATH. Попробуйте выполнить редактирование hgwebdir.cgi, как показано в шаге 5.1 со страницы HgWebDirStopByStep .

# adjust python path if not a system-wide install:
import sys
sys.path.insert(0, "c:/dev/Mercurial/lib")

Где, конечно, вставляемый элемент пути настроен так, чтобы указывать, где находятся файлы вашей ртутной библиотеки.

...