Ser usuario root: $ su - Instalamos el repositorio Remi: # rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm Instalamos el Apache (httpd) Web server y la version existente de PHP en el repositorio: # yum --enablerepo=remi,remi-php55 install httpd php php-common Instalamos los modulos del PHP: # yum --enablerepo=remi,remi-php55 install php-pecl-apc php-cli php-pear php-pdo php-mysqlnd php-pgsql php-pecl-mongo php-sqlite php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml Iniciamos el Apache HTTP server (httpd) y le ponemos un autostart al Apache HTTP server (httpd) en el boteo: # service httpd start # chkconfig --levels 235 httpd on Creamos una extension PHP para probar si esta funcionando el Apache, el PHP y sus modulos: # vim /var/www/html/phpinfo.php Luego insertamos la siguiente informacion y guardamos: Chequeamos la pagina creada en un navegador: http://localhost/phpinfo.php El resultado debe mostrar esto en el navegador: Habilitamos la conexion remota del Apache HTTP Server (httpd) editando los iptables, abriendo el puerto 80: # vim /etc/sysconfig/iptables Agregamos esta linea antes del COMMIT: -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT Reiniciamos los iptables: service iptables restart