如何连接到远程 VisualSVN 服务器?
How do I connect to a remote VisualSVN server?
我正在尝试使用 VisualSVN 和 PhpStorm 连接到远程 VisualSVN 服务器。我有机器的 IP 地址,我在两个程序中都指定了机器的路径。
我尝试过的路径:
svn://ip.ad.dr.ess/c:/Repositories
svn+ssh://ip.ad.dr.ess/c:/Repositories
在 Visual SVN 中,我收到 无法连接到 WMI 命名空间。 RPC 服务器不可用。 (0x800706BA)
PhpStorm 给我 svn: E210002: 当我使用 svn+ssh 和 连接到 ip.ad.dr.ess:22 时出现问题svn: E210003: 使用 svn://
时服务器拒绝连接
现在我正在尝试简单地连接到远程存储库,但最终目标是能够远程添加存储库。
感谢任何帮助!
svn://ip.ad.dr.ess/c:/Repositories
svn+ssh://ip.ad.dr.ess/c:/Repositories
这些地址无效。那里不应该有 c:
。此外,VisualSVN Server 不通过 svn:
或 svn+ssh:
svnserve 的协议为存储库提供服务。它通过 HTTP(S) 为存储库提供服务。您必须仔细检查正确的 URL。您可以在 VisualSVN 服务器管理器 MMC 控制台中找到它。
如果要远程添加存储库,您必须是 VisualSVN Server 管理员(服务器计算机上 VisualSVN Server Admins 组的成员)并且服务器必须设置为根据文章 KB25: Configuring Remote Administration. Don't forger that you can also use PowerShell to administer the server remotely, see the page PowerShell Scripting and Automation with VisualSVN Server.
进行远程管理
我正在尝试使用 VisualSVN 和 PhpStorm 连接到远程 VisualSVN 服务器。我有机器的 IP 地址,我在两个程序中都指定了机器的路径。
我尝试过的路径:
svn://ip.ad.dr.ess/c:/Repositories
svn+ssh://ip.ad.dr.ess/c:/Repositories
在 Visual SVN 中,我收到 无法连接到 WMI 命名空间。 RPC 服务器不可用。 (0x800706BA)
PhpStorm 给我 svn: E210002: 当我使用 svn+ssh 和 连接到 ip.ad.dr.ess:22 时出现问题svn: E210003: 使用 svn://
时服务器拒绝连接现在我正在尝试简单地连接到远程存储库,但最终目标是能够远程添加存储库。
感谢任何帮助!
svn://ip.ad.dr.ess/c:/Repositories
svn+ssh://ip.ad.dr.ess/c:/Repositories
这些地址无效。那里不应该有 c:
。此外,VisualSVN Server 不通过 svn:
或 svn+ssh:
svnserve 的协议为存储库提供服务。它通过 HTTP(S) 为存储库提供服务。您必须仔细检查正确的 URL。您可以在 VisualSVN 服务器管理器 MMC 控制台中找到它。
如果要远程添加存储库,您必须是 VisualSVN Server 管理员(服务器计算机上 VisualSVN Server Admins 组的成员)并且服务器必须设置为根据文章 KB25: Configuring Remote Administration. Don't forger that you can also use PowerShell to administer the server remotely, see the page PowerShell Scripting and Automation with VisualSVN Server.
进行远程管理