1. 程式人生 > >VisualSVN Server啟動失敗原因及解決方案

VisualSVN Server啟動失敗原因及解決方案

1.問題起因

本地從SVN上更新失敗,錯誤提示如下:

Unable to connect to a repository at URL
The XML response contains invalid XML
Malformed XML: no element found

無法連線SVN

2.可能原因

VisualSVN Server所在的伺服器掛了之後,SVN就出問題了。
開啟伺服器之後發現VisualSVN Server服務確實沒啟動,手動啟動之後提示(忘記截圖):

SVN Server啟動錯誤(0x8007042a)

而後檢視VisualSVN Server日誌可見:

make_sock:could not bind to address 0.0.0.0:443

錯誤提示,日誌被佔用

3.解決方案

  • 查詢佔用443埠的pid
    netstat -ano | findstr “443”

  • 查詢pid對應的應用
    tasklist | findstr “pid”

  • 開啟任務管理,找到該應用
    Apache.exe確認只有VisualSVN使用後,強制關閉Apache.exe。

  • 重啟VisualSVN Server服務,成功