Re: Remote Datasource of my repository

2010-01-13 Thread Juan Jesús Cremades Monserrat
Hi! I've reading all the solutions proposed, but the ideal stage will the next: An user calls the Subversion Server, the project http://xxx.xxx.xxx.xxx/svn/project. The Subversion Server receives the request and recovery the information of the datastore, which is another machine. Later, sends the

Re: Remote Datasource of my repository

2010-01-04 Thread Andy Levy
2010/1/4 Juan Jesús Cremades Monserrat : > Hi!! > > I've created a Virtual Machine with a Subversion Server. Until Now, the > content was stored in the same VM but my boss want the data out of it > because security. There's some meaning to move this data? Thanks! Doing so won't significantly impro

Re: Remote Datasource of my repository

2010-01-04 Thread Ulrich Eckhardt
On Monday 04 January 2010, Juan Jesús Cremades Monserrat wrote: > I've created a Virtual Machine with a Subversion Server. Until Now, the > content was stored in the same VM but my boss want the data out of it > because security. The existing solution opens the virtual machine to corruption throug

RE: Remote Datasource of my repository

2010-01-04 Thread Venkata Badipatla
Hi, You can back up the SVN repository using the "svnadmin dump" command. This dump file is platform independent. You can restore it back using "svnadmin load" command in any platform. Dump Command: svnadmin dump /location/of/the/repository > dumpfilename.dmp Before restoring the SVN repositor

Re: Remote Datasource of my repository

2010-01-04 Thread Bogdan Cristea
On Monday 04 January 2010 13:29:23 Juan Jesús Cremades Monserrat wrote: > Hi!! > > I've created a Virtual Machine with a Subversion Server. Until Now, the > content was stored in the same VM but my boss want the data out of it > because security. There's some meaning to move this data? Thanks! >