svnserve: 不能绑定服务器套接字: 地址已经被使用

in linux with 0 comment
如果出现,这样的错误信息,“svnserve: 不能绑定服务器套接字: 地址已经被使用”
那先把svnserve进程干掉。
具体做法是
$ ps -aux  #查看进程,svnserve的pid为16663
$ kill -9 16663 #干掉svnserve
再次运行$ svnserve -d -r /var/www/svn
Responses