Why does DA disable yum installation of apache mods

nicikiketo

New member
Joined
Oct 5, 2011
Messages
2
Hi,

I have seen in various other threads that part of DA installation adds this to /etc/yum.conf

Code:
exclude=apache* httpd* mod_* mysql* MySQL* da_* *ftp* exim* sendmail* php* bind-chroot*

Why is this? Can I safely edit the exclude line temporarily? Is there a recommended way of overcoming this problem?

I want to install mod_xsendfile for my Rails 3 app, but cannot.

Code:
yum install mod_xsendfile

I would really appreciate any advice before I unwittingly trash my server.
 
Cause for deps will require apache2 install, thats what DA disable to install, cause DA use to install apache from source.

Regards
 
thanks so much

Hi SeLLeRoNe,

Thanks very much. This worked for me. the only thing I had to do was provide the full path for the apxs command.

Code:
 sudo /usr/sbin/apxs -cia mod_xsendfile.c

instead of

Code:
apxs -cia mod_xsendfile.c
 
Back
Top