Skip to content

How to install Apache MySQL PHP Hundreds 5.4

In this article we will see how to set up a web server on a CentOS 5.4. How we will use Apache Web server, Mysql as database and programming language PHP5.

The installation will be done from the console as they often do not have access to a graphical environment especially if you do the installation remotely using SSH.

Utilizaremos para la instalación el comando yum que baja de los repositorios de Centos los paquetes y los instala automáticamente.

The first step is to install MySQL using the command

yum install mysql mysql-server

una vez instalado lo configuramos para que inicie automáticamente con

chkconfig –levels 235 mysqld on

y lo arrancamos con

/etc/init.d/mysqld start

Luego instalamos Apache con

yum install httpd

una vez instalado lo configuramos para que inicie automáticamente con

chkconfig –levels 235 httpd on

y lo arrancamos con

/etc / init.d / httpd start

At this point if we surf the server address would have to do something

Ahora instalamos PHP y lo vinculamos a Apache usando

yum install php

Reiniciamos Apache usando

/etc / init.d / httpd start

Generamos un archivo para probar que PHP funciona correctamente usando

touch /var/www/html/info.php
echo ‘<?php phpinfo(); ?>’ > /var/www/html/info.php

Si navegamos la URL http://direccion server/info.php tenemos que ver lo siguiente

Para finalizar nos resta agregar soporte de mysql a php usando el siguiente comando

yum install php-mysql

Reiniciamos Apache usando

/etc / init.d / httpd start

Si navegamos la URL http://direccion server/info.php tenemos que ver en la parte media de la pagina lo siguiente

 

SOURCE: http://www.technoblog.com.ar/index.php/2010/02/como-instalar-apachemysqlphp-en-ubuntu-5-4/