本文介绍了使用 Tortoise SVN 连接到远程 Windows 服务器上的 SVN?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在远程 Windows 2008 服务器上安装了 svn,例如 ip 是 41.139.540.60.现在,在服务器上使用 Tortoise SVN 可以使用 svn://localhost/.我可以打开repo浏览器等等.现在,我如何从本地 PC 连接到该 svn?我试过 svn://41.139.540.60,但没有用,我得到的消息是服务器没有响应,因此连接失败.我无法ping通IP,所以我猜是服务器问题.

I installed svn on my remote Windows 2008 server, the ip is 41.139.540.60 for example. Now, using Tortoise SVN on the server itself works using svn://localhost/. I can open the repo browser and so on. Now, how do I connect to that svn from my local PC? I tried svn://41.139.540.60, but it did not work, the message I got was the the server did not respond and thus connection failed. I cant ping the IP, so its a server issue I guess.

还需要什么才能让它运行?

What else is needed to make it run?

谢谢:)

我使用的指南是:http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html

推荐答案

svn:// 协议在 TCP 端口 3690 上运行,因此请确保您的远程 Windows Server 2008允许客户端连接到此端口.

svn:// protocol runs on TCP port 3690, so make sure your remote Windows Server 2008 allows clients to connect to this port.

另一种选择是在您的 Windows 2008 服务器上安装 Apache + mod_svn 并使用 https:// 而不是 svn:// 连接到您的存储库

An other option is to install Apache + mod_svn on your Windows 2008 server and connect to your repositories with https:// rather than svn://

这是安装 Apache 和 mod_svn 的有用指南

由于您已经安装了 SVN 本身,您可以从 2.3 节开始

As you already installed SVN itself, you can start from section 2.3

这篇关于使用 Tortoise SVN 连接到远程 Windows 服务器上的 SVN?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 06:02