SVN unable to connect to repository at URL

错误提示如下图:

解决方法:

svnserve -d -r svn的仓库路径 --listen-port 3691

如有错误提示:

svnserve: Can't bind server socket: Address already in use

先执行命令:

killall svnserve

再次执行:

svnserve -d -r svn的仓库路径 --listen-port 3691

问题解决!!!

原文地址:https://www.cnblogs.com/double330/p/12272175.html