Linux 启动SVN服务

#使用默认端口3690启动svn服务
svnserve -d -r /home/svndata

# 如果出现
#svnserve: Can't bind server socket: Address already in use
#说明端口被占用,换其他监听端口就行了:

#使用9999端口启动svn服务
svnserve --listen-port 9999 -d -r /home/svndata

#-d 表示后台运行
#-r 表示数据仓库目录

原文地址:https://www.cnblogs.com/gsyun/p/7219394.html