logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Compatibilty issues Subversion and Apache (Newbie)
Author
partrickduboucher



Joined: 29 Aug 2007
Posts: 2

PostPosted: Wed 29 Aug '07 17:19    Post subject: Compatibilty issues Subversion and Apache (Newbie) Reply with quote

Hi all,

I'm having trouble finding out the info I need on the web.
If anyone is so inclined, and knowledgeable, it might be a good idea to matrix style the compatibilities between apache and subversion. (And other tools as applicable Smile )

In the meantime, I would greatly appreciate some input on this.

I'm running Apache 2.2.x (I don't know which one because I don't know how to check [I've inferred 2.2 from the comments in http.conf]

And I'm running Subversion 1.4.3 ( I also don't know how to check the APR for subversion or for my apache for that matter!)

Could someone tell me;
1) how to check my Apache version (and APR version)

2) how to check the APR running on subversion

3) How to know if they are compatible.

4) if they are not.... what are my best [most straightforward] options.
upgrade subversion or downgrade Apache.

Thanks a million,
Patrick
Back to top
Steffen
Moderator


Joined: 15 Oct 2005
Posts: 3056
Location: Hilversum, NL, EU

PostPosted: Wed 29 Aug '07 18:24    Post subject: Reply with quote

With dos command:

>httpd -V

You see the version info.


Steffen
Back to top
partrickduboucher



Joined: 29 Aug 2007
Posts: 2

PostPosted: Wed 29 Aug '07 18:32    Post subject: Reply with quote

Steffen wrote:
With dos command:

>httpd -V

You see the version info.


Steffen



I'm using Linus fedora, httpd: command not found.
I've also tried apache -V and multiples of --version -v etc......
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7294
Location: Germany, Next to Hamburg

PostPosted: Wed 29 Aug '07 21:07    Post subject: Reply with quote

If you are using Linux you may try apache2ctl -V or apachectl -V
but notice that this is a windows forum for apache Wink

Here's what you need to do:

download db4-4.2.52-3.i386.rpm db4-devel-4.2.52-3.i386.rpm
db4-utils-4.2.52-3.i386.rpm and install (do not try to upgrade db4-4.1,
just do an install):

rpm -ivh db4*.rpm

Now add

[subversion]
name=Subversion at Summersoft
baseurl=http://summersoft.fay.ar.us/pub/subversion/latest/fedora/bin/

to your yum.conf file
and do

yum install httpd
yum install subversion
yum install subversion-server

Code:

<Location /svn/repository>
    DAV svn
    SVNPath /home/horst/svn/vodan/
#    AuthzSVNAccessFile /home/horst/svn/vodan/conf/authz
    AuthType Basic
    AuthName "Subversion"
    AuthUserFile /home/horst/svn/vodan/conf/passwd
    Require valid-user
   </Location>


You may look here http://www.subversionary.org/howto/setting-up-a-server-on-fedora-core-4
Back to top


Reply to topic   Topic: Compatibilty issues Subversion and Apache (Newbie) View previous topic :: View next topic
Post new topic   Forum Index -> Apache