Installing Apache CAS module through yum and EPEL

You can install mod_auth_cas without compiling it from scratch. Follow these steps:

  1. Add the EPEL repo to your repo list:
  2. install using yum install –enablerepo=epel mod_auth_cas

For example:

For EL5:

su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm'
su -c 'yum install --enablerepo=epel mod_auth_cas'

For EL6:

su -c 'rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm'
su -c 'yum install --enablerepo=epel mod_auth_cas'

More info at: https://wiki.jasig.org/pages/viewpage.action?pageId=47874958

Comments are closed.