here are the scripts I use to install, start, stop and uninstall
svnserve as a windows service.
install-subversion-service.cmd
sc create "subversion daemon" binpath=
"D:\MEDIA\SVN\svn-win32-1.4.6\bin\svnserve.exe --service -r
D:\\MEDIA\\SVN\\REPOS\\" displayname= "subversion daemon" depend=
Tcpip start= auto
pause
start-subversion.cmd
net start "subversion daemon"
pause
stop-subversion.cmd
net stop "subversion daemon"
pause
uninstall-subversion-service.cmd
sc delete "subversion daemon"
pause
all of these scripts need to run elevated (as an administrator),
double check that the svnserve port isnt being blocked by your
firewall.
On Tue, Nov 10, 2009 at 6:12 AM, Lester <lesterken_at_gmail.com> wrote:
> Ok, I've read the documentation, installed svnserver on the Windows
> 2008 Server and tried to start it up as a service using "svnserve.exe
> --daemom" command in the DOS prompt. However, the DOS window just
> hangs there with no message.
>
> Can you help?
>
> Thanks!
> Lester
>
> On Nov 7, 3:18 pm, Simon Large <simon.tortoise..._at_googlemail.com>
> wrote:
>> 2009/11/7 Lester <lester..._at_gmail.com>:
>>
>> > Hi Simon,
>>
>> > no, I did not install anything on the Windows 2008 Server. Is
>> > "svnserve.exe" necessary? I thought I could just copy the repository
>> > from one server to another then change the URL pointer.
>>
>> Subversion is a client/server system. TortoiseSVN is the client but
>> you need a server as well. The svn:// part of the URL indicates that
>> svn protocol is being used, and that you need to be running svnserve
>> on the server. Please do yourself a favour and read the documentation.
>>
>> http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-s...
>>
>> Simon
>>
>> --
>> : ___
>> : oo // \\ "De Chelonian Mobile"
>> : (_,\/ \_/ \ TortoiseSVN
>> : \ \_/_\_/> The coolest Interface to (Sub)Version Control
>> : /_/ \_\ http://tortoisesvn.net
>>
>> ------------------------------------------------------http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMess...
>>
>> To unsubscribe from this discussion, e-mail: [users-unsubscr..._at_tortoisesvn.tigris.org].
>
> ------------------------------------------------------
> http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=2415849
>
> To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
>
------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=2415908
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2009-11-09 21:56:09 CET