REMI Repository on CentOS 6.5 - rharmonson/richtech GitHub Wiki
#REMI Repository on CentOS 6.5
References
http://blog.famillecollet.com/pages/Config-en
##Installation Use of REMI repository on CentOS requires installation and configuration of the EPEL repository.
Install Remi Collet's repo for CentOS 6.x by executing the two lines below. If using a different distribution or version, see the reference given above.
# rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
Review the remi repo file found in /etc/yum.repos.d
and decide which repo to enable. You can edit the file directly or execute the following using the repo to enable.
yum-config-manager --enable remi-php55
Alernatively, you can leave the remi repos disabled but install packages using the following syntax:
yum --disablerepo="*" --enablerepo="remi-php55" install <package>
Done!