0

The server restarted last night, since then I cannot do svn up or svn commit. svn: Can't connect to host 'zillerserv': Connection refused

I did a fresh checkout in another folder, it worked.

Any help? Thanks

bahrep
  • 29,961
  • 12
  • 103
  • 150
Sandy
  • 31
  • 1
  • 1
  • 5
  • 1
    is svnserve running? Depending on where the server is, and how you connect, that service may need to be running. – Chris Henry Nov 06 '12 at 06:39

1 Answers1

2

Enter this into the terminal:

svnserve -d -r /home/user/SVNREPO

where SVNREPO is your repository folder.

Mika
  • 1,195
  • 6
  • 22
  • 34
  • thanks @Mika. Didn't realize svnserve is not started. Just to clarify: `-d : run in daemon mode` , `-r : root of directory to serve` – Dio Phung Aug 07 '14 at 11:54