installing APC on Centos 5

APC also called as “Alternate PHP Cache”

yum install php-pear
yum install php-devel
yum install httpd-devel
pecl install apc
echo "extension=apc.so" > /etc/php.d/apc.ini
service httpd restart [/etc/init.d/httpd restart]

Check the installation using the command

php -m
installing APC on Centos 5