• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

mod_dav on centos

W

w0uter

Guest
Hi,

Is there someone who know if this give problems whit plesk ? Must i need the know something before i try to install mod_dav ?

I'm using centos 4.2

Greets
 
im thinking of enabling that mod too, im trying to install subversion repo on my vps, but why there should be any problem with plesk ???
 
I'm running multiple boxes that run a Subversion server with mod_dav_svn under Plesk and it works just fine.
 
Steps

breun:

Can you provide any types of steps for how to install subversion on a plesk 8 system?

Thanks,
Scott
 
It's not different from a normal install. Plesk doesn't really have anything to do with this.
 
Well I could yum install subversion as instructed at:

http://alexle.net/archives/138

But I would prefer the latest version of subversion.

I tried to download the main file and the dependency files but when I ran ./configure to check for dependencies I realize I don't have a compiler.

So I check out yum install gcc and receive the following information about what will be downloaded and installed.

Code:
Dependencies Resolved

=============================================================================
 Package                 Arch       Version          Repository        Size
=============================================================================
Installing:
 gcc                     i386       3.4.6-3          base              4.4 M
Installing for dependencies:
 cpp                     i386       3.4.6-3          base              1.6 M
 glibc-devel             i386       2.3.4-2.25       base              1.9 M
 glibc-headers           i386       2.3.4-2.25       base              582 k
 glibc-kernheaders       i386       2.4-9.1.98.EL    base              693 k
Updating for dependencies:
 glibc                   i686       2.3.4-2.25       base              5.1 M
 glibc-common            i386       2.3.4-2.25       base               16 M
 libgcc                  i386       3.4.6-3          base               59 k

Transaction Summary
=============================================================================
Install      5 Package(s)
Update       3 Package(s)
Remove       0 Package(s)
Total download size: 30 M
Is this ok [y/N]:

The problem is that I do not know if any of these will break anything that is currently running in plesk. Since its updating glibc, glibc-common, and libgcc I don't want to break anything already working correctly for plesk. It is obviously not as simple to everyone as it is to you. So I just decided to post if someone had some steps.
 
You can just use yum update when using Plesk (and actually, you should if you want to keep your system patched). It's not necessary to compile subversion yourself though, just install the packages from Dag's repository. Add his repository to your yum configuration and yum install subversion mod_dav_svn if you want to run a Subversion server using WebDAV.
 
Or you can use mod_dav without installing anything.

On plesk8+fedora core it's already compiled as a module for apache2.

you just have to put "Dav On" under a VirtualHost and Directory directives (httpd.include or vhost.conf)

it's working great, but files are created with apache2 user ownership. I'm using suphp and it's causing troubles (apache user < 1000 so suphp won't let http requests). Any idea to get mod_dav working with suphp ?

Dominique.
 
mod_dav.so is included in the httpd package, but mod_dav_svn.so is not. They are not the same module.
 
Originally posted by breun
mod_dav.so is included in the httpd package, but mod_dav_svn.so is not. They are not the same module.

yep, sure they're different. But it's good to know mod_dav is included by default is plek8/apache installation !
 
Back
Top