Install the Remi Repo in CentOS
Posted on January 7, 2012
The Remi Repo is a yum repository maintained by a French dude - Remi Collet. It contains much more up to date packages (January 2012) such as MySQL 5.5 and PHP 5.3.
Heres how I installed it on CentOS.
- su -
- cd /etc/yum.repos.d
- wget http://rpms.famillecollet.com/enterprise/remi.repo
This file provides configuration for remi and remi-test repositories.
Note: The repository is not enabled on install (enabled=0). You need to enable it when you need it, for example :
- yum --enablerepo=remi install mysql-server
or edit /etc/yum.repos.d/remi.repo and change enabled=0 to enabled=1 to enable it permanently.
Related posts
- MySQL 5.0 or 5.1 to 5.5 Upgrade Traumas on CentOS
Ignoring all the panic-mongers on the rest of the internet upgrading MySQL from 5.0 or 5.1... - Installing nginx & PHP-FPM securely on CentOS
I won't go into the reasons why you should install nginx, if you're here, you've... - Installing RepoForge (RPMForge) in CentOS
RepoForge (RPMForge) contains over 5,000 extra packages for CentO. Many new packages and some updated... - Installing memcached on CentOS (cPanel)
Welcome to hell. No really, compared to installing memcached on Ubuntu, CentOSs really sucks. CentOS... - How to install the nslookup, host OR dig commands in Linux?
Sometimes you are unable to use the nslookup, host OR dig command on your Linux...


