You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by chetanchatwani <ch...@savvion.com> on 2007/08/31 12:08:52 UTC

From to get mod_dav_svn plugin to configue SVN with apache for windows

Hi All,

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by chetanchatwani <ch...@savvion.com>.


Ryan Schmidt-23 wrote:
> 
> On Sep 1, 2007, at 02:26, chetanchatwani wrote:
> 
>> chetanchatwani wrote:
>>
>>> Ryan Schmidt wrote:
>>>
>>>> Then, by all logic, the URLs to your repositories are:
>>>>
>>>> http://xyz.savvion.com/swa/bpmdevrepos
>>>>
>>>> and
>>>>
>>>> http://xyz.savvion.com/swa/sbmrepos
>>>>
>>>> What happens if you view those URLs in a web browser, or look at the
>>>> listing using "svn ls <URL>"? You should see those repositories'
>>>> contents.
>>>>
>>>> I have a suspicion that your sbmrepos repository contains an svn
>>>> directory which contains an sbmrepos directory... You can use "svn
>>>> mv" to rearrange that.
>>>
>>> When I try to see svn ls <URL>
>>>
>>> Output of : svn ls http://xyz.savvion.com/swa/sbmrepos
>>>
>>> svn/
>>>
>>> Output of : svn ls http://xyz.savvion.com/swa/bpmdevrepos
>>>
>>> branches/
>>> tags/
>>> trunk/
>>>
>>> Would request to please help me how to use "svn  mv " command in this
>>> case. Do I need to take any backup since it's live repos?
>>
>> Two  more output for sbmrepos :
>>
>>
>> svn ls http://venus.savvion.com/swa/sbmrepos/svn
>> sbmrepos/
>>
>> svn ls http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
>> branches/
>> tags/
>> trunk/
>>
>>
>> Do I need to do :
>>
>>  svn mv http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
>> http://venus.savvion.com/swa/sbmrepos
> 
> So it looks like your repository indeed contains directories you did  
> not intend.
> 
> I recommend:
> 
> svn mv \
> http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/trunk \
> http://venus.savvion.com/swa/sbmrepos \
> -m "moving trunk to correct location"
> 
> svn mv \
> http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/branches \
> http://venus.savvion.com/swa/sbmrepos \
> -m "moving branches to correct location"
> 
> svn mv \
> http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/tags \
> http://venus.savvion.com/swa/sbmrepos \
> -m "moving tags to correct location"
> 
> svn rm \
> http://venus.savvion.com/swa/sbmrepos/svn \
> -m "removing unnecessary directories"
> 
> You should end up with the directory structure you desire. You may  
> want to make a backup of your repository first, and play with these  
> commands on the backup, to make sure the result is what you want.  
> Then you can do it for real on the live repository.
> 
> Note that these 4 commands will create 4 revisions. You may prefer to  
> do everything in one revision. You may be able to do so by using the  
> svnmucc client instead of the svn client. I myself have never used  
> svnmucc so I cannot advise you in its use. It is available here:
> 
> http://svn.collab.net/repos/svn/trunk/contrib/client-side/svnmucc/ 
> svnmucc.c
> 
> Note that once you do these moves, anybody who has an existing  
> working copy of this repository with the longer URLs will need to  
> either switch their working copy (using "svn switch") to the new  
> shorter URL, or will need to throw away their old working copies and  
> check out new ones. (As you prefer.)
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
> 
> 
> 

Hi Ryan,

Thanks a lot and million time. The issue is resolved.

Regards,
Chetan
-- 
View this message in context: http://www.nabble.com/From-to-get-mod_dav_svn-plugin-to-configue-SVN-with-apache-for-windows-tf4359765.html#a12438834
Sent from the Subversion Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Sep 1, 2007, at 02:26, chetanchatwani wrote:

> chetanchatwani wrote:
>
>> Ryan Schmidt wrote:
>>
>>> Then, by all logic, the URLs to your repositories are:
>>>
>>> http://xyz.savvion.com/swa/bpmdevrepos
>>>
>>> and
>>>
>>> http://xyz.savvion.com/swa/sbmrepos
>>>
>>> What happens if you view those URLs in a web browser, or look at the
>>> listing using "svn ls <URL>"? You should see those repositories'
>>> contents.
>>>
>>> I have a suspicion that your sbmrepos repository contains an svn
>>> directory which contains an sbmrepos directory... You can use "svn
>>> mv" to rearrange that.
>>
>> When I try to see svn ls <URL>
>>
>> Output of : svn ls http://xyz.savvion.com/swa/sbmrepos
>>
>> svn/
>>
>> Output of : svn ls http://xyz.savvion.com/swa/bpmdevrepos
>>
>> branches/
>> tags/
>> trunk/
>>
>> Would request to please help me how to use "svn  mv " command in this
>> case. Do I need to take any backup since it's live repos?
>
> Two  more output for sbmrepos :
>
>
> svn ls http://venus.savvion.com/swa/sbmrepos/svn
> sbmrepos/
>
> svn ls http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
> branches/
> tags/
> trunk/
>
>
> Do I need to do :
>
>  svn mv http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
> http://venus.savvion.com/swa/sbmrepos

So it looks like your repository indeed contains directories you did  
not intend.

I recommend:

svn mv \
http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/trunk \
http://venus.savvion.com/swa/sbmrepos \
-m "moving trunk to correct location"

svn mv \
http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/branches \
http://venus.savvion.com/swa/sbmrepos \
-m "moving branches to correct location"

svn mv \
http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos/tags \
http://venus.savvion.com/swa/sbmrepos \
-m "moving tags to correct location"

svn rm \
http://venus.savvion.com/swa/sbmrepos/svn \
-m "removing unnecessary directories"

You should end up with the directory structure you desire. You may  
want to make a backup of your repository first, and play with these  
commands on the backup, to make sure the result is what you want.  
Then you can do it for real on the live repository.

Note that these 4 commands will create 4 revisions. You may prefer to  
do everything in one revision. You may be able to do so by using the  
svnmucc client instead of the svn client. I myself have never used  
svnmucc so I cannot advise you in its use. It is available here:

http://svn.collab.net/repos/svn/trunk/contrib/client-side/svnmucc/ 
svnmucc.c

Note that once you do these moves, anybody who has an existing  
working copy of this repository with the longer URLs will need to  
either switch their working copy (using "svn switch") to the new  
shorter URL, or will need to throw away their old working copies and  
check out new ones. (As you prefer.)


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by chetanchatwani <ch...@savvion.com>.


chetanchatwani wrote:
> 
> 
> 
> Ryan Schmidt-23 wrote:
>> 
>> 
>> On Sep 1, 2007, at 01:14, chetanchatwani wrote:
>> 
>>> Ryan Schmidt wrote:
>>>
>>>> On Aug 31, 2007, at 08:46, chetanchatwani wrote:
>>>>
>>>>> Thanks to all. Now I am able to access the both repos
>>>>>
>>>>> The URL for bpmdevrepos is
>>>>>           -  http://xyz.savvion.com/swa/bpmdevrepos
>>>>>
>>>>> And the URL for sbmrepos is
>>>>>
>>>>>         - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>>>
>>>>> But why the url is different ? Can anyone help for same.
>>>>> The scenario is :
>>>>> 1.sbmrepos is created first and data is migrated from cvs to svn  
>>>>> using
>>>>> cvs2svn.
>>>>> 2.After that bpmdevrepos is created and trunk and tags folders are
>>>>> created.
>>>>>
>>>>>
>>>>> When first sbmrepos was created the url was
>>>>> http://xyz.savvion.com/swa/svn/sbmrepos
>>>>>
>>>>> but after creation of another repos(bpmdevrepos) the url  to  
>>>>> acess old
>>>>> repos(sbmrepos)
>>>>> is changed to
>>>>>
>>>>> http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>>>
>>>>> Could anyone help why so ?
>>>>
>>>> You'll need to show us your Apache configuration and maybe the
>>>> complete recursive contents of your /svn directory.
>>>>
>>>> But if you have a directory /svn on your hard drive and you have
>>>> various repositories in /svn (created using "cd /svn && svnadmin
>>>> create bpmdevrepos && svnadmin create sbmrepos") and you have Apache
>>>> set up with "SVNParentPath /svn" inside a "<Location /swa>"
>>>> directive, then your repository URLs should logically be "http://
>>>> server/swa/bpmdevrepos" and "http://server/swa/sbmrepos"
>>>
>>> The content of /svn are as follow:
>>> /svn
>>> drwx------  7 sbmrepos sbmrepos 4096 Aug 29 03:26 bpmdevrepos
>>> drwx------  7 sbmrepos sbmrepos 4096 Jun  9 01:51 sbmrepos
>>>
>>> /svn/sbmrepos
>>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 31 06:07 conf
>>> drwx------ 2 sbmrepos sbmrepos 4096 Jun 10 23:04 dav
>>> drwx------ 6 sbmrepos sbmrepos 4096 Aug 23 05:04 db
>>> -rw------- 1 sbmrepos sbmrepos    2 Jun  9 01:51 format
>>> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 hooks
>>> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 locks
>>> -rw------- 1 sbmrepos sbmrepos  229 Jun  9 01:51 README.txt
>>>
>>>
>>> /svn/bpmdevrepos
>>>
>>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 06:43 conf
>>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 dav
>>> drwx------ 5 sbmrepos sbmrepos 4096 Aug 29 03:33 db
>>> -rw------- 1 sbmrepos sbmrepos    2 Aug 29 03:26 format
>>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 hooks
>>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 locks
>>> -rw------- 1 sbmrepos sbmrepos  229 Aug 29 03:26 README.txt
>>>
>>> Also I have attached httpd.conf.
>>>
>>>
>>> Repos were created from /home/sbmrepos
>>>
>>> svnadmin create --fs-type fsfs /svn/sbmrepos
>>> svnadmin create --fs-type fsfs /svn/bpmdevrepos
>> 
>> Looks normal to me.
>> 
>>> <Location "/swa">
>>>     DAV svn
>>>     #SVNPath /svn/sbmrepos
>>>     SVNParentPath /svn
>>>     AuthType Basic
>>>     AuthName "Savvion Subversion Repository"
>>>     AuthUserFile /u1/sbmrepos/conf/apachepasswd
>>>     Require valid-user
>>>     AuthzSVNAccessFile /u1/sbmrepos/conf/authz
>>> </Location>
>>>
>>> ServerName xyz.savvion.com
>> 
>> Looks good to me too.
>> 
>> Then, by all logic, the URLs to your repositories are:
>> 
>> http://xyz.savvion.com/swa/bpmdevrepos
>> 
>> and
>> 
>> http://xyz.savvion.com/swa/sbmrepos
>> 
>> What happens if you view those URLs in a web browser, or look at the  
>> listing using "svn ls <URL>"? You should see those repositories'  
>> contents.
>> 
>> I have a suspicion that your sbmrepos repository contains an svn  
>> directory which contains an sbmrepos directory... You can use "svn  
>> mv" to rearrange that.
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
>> For additional commands, e-mail: users-help@subversion.tigris.org
>> 
>> 
>> 
> 
> 
> Hi ,
> 
> Thanks for comment. 
> 
> When I try to see svn ls <URL>
> 
> Output of : svn ls http://xyz.savvion.com/swa/sbmrepos
> 
> svn/
> 
> Output of : svn ls http://xyz.savvion.com/swa/bpmdevrepos
> 
> branches/
> tags/
> trunk/
> 
> Would request to please help me how to use "svn  mv " command in this
> case. Do I need to take any backup since it's live repos?
> 
> 
> 
> 
> 
> 
> Regards,
> Chetan
> 

Hi ,

Two  more output for sbmrepos :


svn ls http://venus.savvion.com/swa/sbmrepos/svn
sbmrepos/

svn ls http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
branches/
tags/
trunk/


Do I need to do :

 svn mv http://venus.savvion.com/swa/sbmrepos/svn/sbmrepos
http://venus.savvion.com/swa/sbmrepos

Let me know your comments.


Regards,
Chetan
-- 
View this message in context: http://www.nabble.com/From-to-get-mod_dav_svn-plugin-to-configue-SVN-with-apache-for-windows-tf4359765.html#a12438067
Sent from the Subversion Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by chetanchatwani <ch...@savvion.com>.


Ryan Schmidt-23 wrote:
> 
> 
> On Sep 1, 2007, at 01:14, chetanchatwani wrote:
> 
>> Ryan Schmidt wrote:
>>
>>> On Aug 31, 2007, at 08:46, chetanchatwani wrote:
>>>
>>>> Thanks to all. Now I am able to access the both repos
>>>>
>>>> The URL for bpmdevrepos is
>>>>           -  http://xyz.savvion.com/swa/bpmdevrepos
>>>>
>>>> And the URL for sbmrepos is
>>>>
>>>>         - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>>
>>>> But why the url is different ? Can anyone help for same.
>>>> The scenario is :
>>>> 1.sbmrepos is created first and data is migrated from cvs to svn  
>>>> using
>>>> cvs2svn.
>>>> 2.After that bpmdevrepos is created and trunk and tags folders are
>>>> created.
>>>>
>>>>
>>>> When first sbmrepos was created the url was
>>>> http://xyz.savvion.com/swa/svn/sbmrepos
>>>>
>>>> but after creation of another repos(bpmdevrepos) the url  to  
>>>> acess old
>>>> repos(sbmrepos)
>>>> is changed to
>>>>
>>>> http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>>
>>>> Could anyone help why so ?
>>>
>>> You'll need to show us your Apache configuration and maybe the
>>> complete recursive contents of your /svn directory.
>>>
>>> But if you have a directory /svn on your hard drive and you have
>>> various repositories in /svn (created using "cd /svn && svnadmin
>>> create bpmdevrepos && svnadmin create sbmrepos") and you have Apache
>>> set up with "SVNParentPath /svn" inside a "<Location /swa>"
>>> directive, then your repository URLs should logically be "http://
>>> server/swa/bpmdevrepos" and "http://server/swa/sbmrepos"
>>
>> The content of /svn are as follow:
>> /svn
>> drwx------  7 sbmrepos sbmrepos 4096 Aug 29 03:26 bpmdevrepos
>> drwx------  7 sbmrepos sbmrepos 4096 Jun  9 01:51 sbmrepos
>>
>> /svn/sbmrepos
>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 31 06:07 conf
>> drwx------ 2 sbmrepos sbmrepos 4096 Jun 10 23:04 dav
>> drwx------ 6 sbmrepos sbmrepos 4096 Aug 23 05:04 db
>> -rw------- 1 sbmrepos sbmrepos    2 Jun  9 01:51 format
>> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 hooks
>> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 locks
>> -rw------- 1 sbmrepos sbmrepos  229 Jun  9 01:51 README.txt
>>
>>
>> /svn/bpmdevrepos
>>
>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 06:43 conf
>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 dav
>> drwx------ 5 sbmrepos sbmrepos 4096 Aug 29 03:33 db
>> -rw------- 1 sbmrepos sbmrepos    2 Aug 29 03:26 format
>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 hooks
>> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 locks
>> -rw------- 1 sbmrepos sbmrepos  229 Aug 29 03:26 README.txt
>>
>> Also I have attached httpd.conf.
>>
>>
>> Repos were created from /home/sbmrepos
>>
>> svnadmin create --fs-type fsfs /svn/sbmrepos
>> svnadmin create --fs-type fsfs /svn/bpmdevrepos
> 
> Looks normal to me.
> 
>> <Location "/swa">
>>     DAV svn
>>     #SVNPath /svn/sbmrepos
>>     SVNParentPath /svn
>>     AuthType Basic
>>     AuthName "Savvion Subversion Repository"
>>     AuthUserFile /u1/sbmrepos/conf/apachepasswd
>>     Require valid-user
>>     AuthzSVNAccessFile /u1/sbmrepos/conf/authz
>> </Location>
>>
>> ServerName xyz.savvion.com
> 
> Looks good to me too.
> 
> Then, by all logic, the URLs to your repositories are:
> 
> http://xyz.savvion.com/swa/bpmdevrepos
> 
> and
> 
> http://xyz.savvion.com/swa/sbmrepos
> 
> What happens if you view those URLs in a web browser, or look at the  
> listing using "svn ls <URL>"? You should see those repositories'  
> contents.
> 
> I have a suspicion that your sbmrepos repository contains an svn  
> directory which contains an sbmrepos directory... You can use "svn  
> mv" to rearrange that.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
> 
> 
> 


Hi ,

Thanks for comment. 

When I try to see svn ls <URL>

Output of : svn ls http://xyz.savvion.com/swa/sbmrepos

svn/

Output of : svn ls http://xyz.savvion.com/swa/bpmdevrepos

branches/
tags/
trunk/

Would request to please help me how to use "svn  mv " command in this case.
Do I need to take any backup since it's live repos?






Regards,
Chetan
-- 
View this message in context: http://www.nabble.com/From-to-get-mod_dav_svn-plugin-to-configue-SVN-with-apache-for-windows-tf4359765.html#a12438066
Sent from the Subversion Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Sep 1, 2007, at 01:14, chetanchatwani wrote:

> Ryan Schmidt wrote:
>
>> On Aug 31, 2007, at 08:46, chetanchatwani wrote:
>>
>>> Thanks to all. Now I am able to access the both repos
>>>
>>> The URL for bpmdevrepos is
>>>           -  http://xyz.savvion.com/swa/bpmdevrepos
>>>
>>> And the URL for sbmrepos is
>>>
>>>         - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>
>>> But why the url is different ? Can anyone help for same.
>>> The scenario is :
>>> 1.sbmrepos is created first and data is migrated from cvs to svn  
>>> using
>>> cvs2svn.
>>> 2.After that bpmdevrepos is created and trunk and tags folders are
>>> created.
>>>
>>>
>>> When first sbmrepos was created the url was
>>> http://xyz.savvion.com/swa/svn/sbmrepos
>>>
>>> but after creation of another repos(bpmdevrepos) the url  to  
>>> acess old
>>> repos(sbmrepos)
>>> is changed to
>>>
>>> http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>>
>>> Could anyone help why so ?
>>
>> You'll need to show us your Apache configuration and maybe the
>> complete recursive contents of your /svn directory.
>>
>> But if you have a directory /svn on your hard drive and you have
>> various repositories in /svn (created using "cd /svn && svnadmin
>> create bpmdevrepos && svnadmin create sbmrepos") and you have Apache
>> set up with "SVNParentPath /svn" inside a "<Location /swa>"
>> directive, then your repository URLs should logically be "http://
>> server/swa/bpmdevrepos" and "http://server/swa/sbmrepos"
>
> The content of /svn are as follow:
> /svn
> drwx------  7 sbmrepos sbmrepos 4096 Aug 29 03:26 bpmdevrepos
> drwx------  7 sbmrepos sbmrepos 4096 Jun  9 01:51 sbmrepos
>
> /svn/sbmrepos
> drwx------ 2 sbmrepos sbmrepos 4096 Aug 31 06:07 conf
> drwx------ 2 sbmrepos sbmrepos 4096 Jun 10 23:04 dav
> drwx------ 6 sbmrepos sbmrepos 4096 Aug 23 05:04 db
> -rw------- 1 sbmrepos sbmrepos    2 Jun  9 01:51 format
> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 hooks
> drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 locks
> -rw------- 1 sbmrepos sbmrepos  229 Jun  9 01:51 README.txt
>
>
> /svn/bpmdevrepos
>
> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 06:43 conf
> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 dav
> drwx------ 5 sbmrepos sbmrepos 4096 Aug 29 03:33 db
> -rw------- 1 sbmrepos sbmrepos    2 Aug 29 03:26 format
> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 hooks
> drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 locks
> -rw------- 1 sbmrepos sbmrepos  229 Aug 29 03:26 README.txt
>
> Also I have attached httpd.conf.
>
>
> Repos were created from /home/sbmrepos
>
> svnadmin create --fs-type fsfs /svn/sbmrepos
> svnadmin create --fs-type fsfs /svn/bpmdevrepos

Looks normal to me.

> <Location "/swa">
>     DAV svn
>     #SVNPath /svn/sbmrepos
>     SVNParentPath /svn
>     AuthType Basic
>     AuthName "Savvion Subversion Repository"
>     AuthUserFile /u1/sbmrepos/conf/apachepasswd
>     Require valid-user
>     AuthzSVNAccessFile /u1/sbmrepos/conf/authz
> </Location>
>
> ServerName xyz.savvion.com

Looks good to me too.

Then, by all logic, the URLs to your repositories are:

http://xyz.savvion.com/swa/bpmdevrepos

and

http://xyz.savvion.com/swa/sbmrepos

What happens if you view those URLs in a web browser, or look at the  
listing using "svn ls <URL>"? You should see those repositories'  
contents.

I have a suspicion that your sbmrepos repository contains an svn  
directory which contains an sbmrepos directory... You can use "svn  
mv" to rearrange that.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by chetanchatwani <ch...@savvion.com>.


Ryan Schmidt-23 wrote:
> 
> 
> On Aug 31, 2007, at 08:46, chetanchatwani wrote:
> 
>> Thanks to all. Now I am able to access the both repos
>>
>> The URL for bpmdevrepos is
>>           -  http://xyz.savvion.com/swa/bpmdevrepos
>>
>> And the URL for sbmrepos is
>>
>>         - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>
>> But why the url is different ? Can anyone help for same.
>> The scenario is :
>> 1.sbmrepos is created first and data is migrated from cvs to svn using
>> cvs2svn.
>> 2.After that bpmdevrepos is created and trunk and tags folders are  
>> created.
>>
>>
>> When first sbmrepos was created the url was
>> http://xyz.savvion.com/swa/svn/sbmrepos
>>
>> but after creation of another repos(bpmdevrepos) the url  to acess old
>> repos(sbmrepos)
>> is changed to
>>
>> http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>>
>> Could anyone help why so ?
> 
> You'll need to show us your Apache configuration and maybe the  
> complete recursive contents of your /svn directory.
> 
> But if you have a directory /svn on your hard drive and you have  
> various repositories in /svn (created using "cd /svn && svnadmin  
> create bpmdevrepos && svnadmin create sbmrepos") and you have Apache  
> set up with "SVNParentPath /svn" inside a "<Location /swa>"  
> directive, then your repository URLs should logically be "http:// 
> server/swa/bpmdevrepos" and "http://server/swa/sbmrepos"
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org
> 
> 
> 

Hi ,

The content of /svn are as follow:
/svn
drwx------  7 sbmrepos sbmrepos 4096 Aug 29 03:26 bpmdevrepos
drwx------  7 sbmrepos sbmrepos 4096 Jun  9 01:51 sbmrepos

/svn/sbmrepos
drwx------ 2 sbmrepos sbmrepos 4096 Aug 31 06:07 conf
drwx------ 2 sbmrepos sbmrepos 4096 Jun 10 23:04 dav
drwx------ 6 sbmrepos sbmrepos 4096 Aug 23 05:04 db
-rw------- 1 sbmrepos sbmrepos    2 Jun  9 01:51 format
drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 hooks
drwx------ 2 sbmrepos sbmrepos 4096 Jun  9 01:51 locks
-rw------- 1 sbmrepos sbmrepos  229 Jun  9 01:51 README.txt


/svn/bpmdevrepos

drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 06:43 conf
drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 dav
drwx------ 5 sbmrepos sbmrepos 4096 Aug 29 03:33 db
-rw------- 1 sbmrepos sbmrepos    2 Aug 29 03:26 format
drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 hooks
drwx------ 2 sbmrepos sbmrepos 4096 Aug 29 03:26 locks
-rw------- 1 sbmrepos sbmrepos  229 Aug 29 03:26 README.txt

Also I have attached httpd.conf.


Repos were created from /home/sbmrepos

svnadmin create --fs-type fsfs /svn/sbmrepos
svnadmin create --fs-type fsfs /svn/bpmdevrepos

Regards,
Chetan


http://www.nabble.com/file/p12437749/httpd.conf httpd.conf 
-- 
View this message in context: http://www.nabble.com/From-to-get-mod_dav_svn-plugin-to-configue-SVN-with-apache-for-windows-tf4359765.html#a12437749
Sent from the Subversion Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Aug 31, 2007, at 08:46, chetanchatwani wrote:

> Thanks to all. Now I am able to access the both repos
>
> The URL for bpmdevrepos is
>           -  http://xyz.savvion.com/swa/bpmdevrepos
>
> And the URL for sbmrepos is
>
>         - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>
> But why the url is different ? Can anyone help for same.
> The scenario is :
> 1.sbmrepos is created first and data is migrated from cvs to svn using
> cvs2svn.
> 2.After that bpmdevrepos is created and trunk and tags folders are  
> created.
>
>
> When first sbmrepos was created the url was
> http://xyz.savvion.com/swa/svn/sbmrepos
>
> but after creation of another repos(bpmdevrepos) the url  to acess old
> repos(sbmrepos)
> is changed to
>
> http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos
>
> Could anyone help why so ?

You'll need to show us your Apache configuration and maybe the  
complete recursive contents of your /svn directory.

But if you have a directory /svn on your hard drive and you have  
various repositories in /svn (created using "cd /svn && svnadmin  
create bpmdevrepos && svnadmin create sbmrepos") and you have Apache  
set up with "SVNParentPath /svn" inside a "<Location /swa>"  
directive, then your repository URLs should logically be "http:// 
server/swa/bpmdevrepos" and "http://server/swa/sbmrepos"


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by chetanchatwani <ch...@savvion.com>.
 Hi All,

Thanks to all. Now I am able to access the both repos

The URL for bpmdevrepos is
          -  http://xyz.savvion.com/swa/bpmdevrepos

And the URL for sbmrepos is

        - http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos

But why the url is different ? Can anyone help for same.
The scenario is :
1.sbmrepos is created first and data is migrated from cvs to svn using
cvs2svn.
2.After that bpmdevrepos is created and trunk and tags folders are created.


When first sbmrepos was created the url was
http://xyz.savvion.com/swa/svn/sbmrepos

but after creation of another repos(bpmdevrepos) the url  to acess old
repos(sbmrepos)
is changed to

http://xyz.savvion.com/swa/sbmrepos/svn/sbmrepos

Could anyone help why so ?


Regards,
Chetan



chetanchatwani wrote:
> 
> Hi All,
> 
> From where do I can download mod_dav_svn plugin to configue SVN with
> apache for windows.
> 
> Regards,
> Chetan
> 

-- 
View this message in context: http://www.nabble.com/From-to-get-mod_dav_svn-plugin-to-configue-SVN-with-apache-for-windows-tf4359765.html#a12426747
Sent from the Subversion Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: From to get mod_dav_svn plugin to configue SVN with apache for windows

Posted by Greg Thomas <th...@omc.bt.co.uk>.
On Fri, 31 Aug 2007 05:08:52 -0700 (PDT), chetanchatwani
<ch...@savvion.com> wrote:

>
>Hi All,
>
From where do I can download mod_dav_svn plugin to configue SVN with apache
>for windows.

Apache 2.0.x:
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 

Apache 2.2.x:
http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=8100

Greg
-- 
This post represents the views of the author and does
not necessarily accurately represent the views of BT.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org