報這個錯誤原因是因為啟動SVN服務時指定的倉庫路徑不對,把原來的進程kill掉,再重新指定正確的倉庫根目錄就行
[root@xxxxxx~]# netstat -apn|grep 3690
tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN 8236/svnserve
[root@xxxxxx~]# ps -aux|grep 3690
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
root 8460 0.0 0.0 103256 840 pts/0 S+ 10:18 0:00 grep 3690
[root@xxxxxx~]# ps -aux|grep 8236
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
root 8236 0.0 0.0 156996 1012 ? Ss 09:52 0:00 /usr/bin/svnserve --daemon --pid-file=/var/run/svnserve.pid
root 8476 0.0 0.0 103256 840 pts/0 S+ 10:19 0:00 grep 8236
[root@xxxxxx~]# kill -9 8236
[root@xxxxxx~]# ps aux|grep svnserve
root 8506 0.0 0.0 103256 840 pts/0 S+ 10:19 0:00 grep svnserve
[root@xxxxxx~]# svnserve -d -r /shiyu/
[root@xxxxxx~]# ps aux|grep svnserve
root 8533 0.0 0.0 156996 756 ? Ss 10:20 0:00 svnserve -d -r /shiyu/
root 8549 0.0 0.0 103256 840 pts/0 S+ 10:20 0:00 grep svnserve