Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: Compatibilty issues Subversion and Apache (Newbie) |
|
Author |
|
partrickduboucher
Joined: 29 Aug 2007 Posts: 2
|
Posted: Wed 29 Aug '07 17:19 Post subject: Compatibilty issues Subversion and Apache (Newbie) |
|
|
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 )
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: 3092 Location: Hilversum, NL, EU
|
Posted: Wed 29 Aug '07 18:24 Post subject: |
|
|
With dos command:
>httpd -V
You see the version info.
Steffen |
|
Back to top |
|
partrickduboucher
Joined: 29 Aug 2007 Posts: 2
|
Posted: Wed 29 Aug '07 18:32 Post subject: |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Wed 29 Aug '07 21:07 Post subject: |
|
|
If you are using Linux you may try apache2ctl -V or apachectl -V
but notice that this is a windows forum for apache
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 |
|
|
|
|
|
|