标签:数据 home inux linu 服务 res -- 使用 linux
#使用默认端口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 表示数据仓库目录
标签:数据 home inux linu 服务 res -- 使用 linux
原文地址:http://www.cnblogs.com/gsyun/p/7219394.html