Está en la página 1de 2

Instalando Apache

# yum install httpd


#vi /etc/httpd/conf/httpd.conf
ServerName 148.202.15.64

Instalando PHP5
# yum install php
Instalar mcrypt de PHP - Para ello lo mas comodo es instalar la ultima version
de EPEL de la siguiente pgina
http://fedoraproject.org/wiki/EPEL
# yum install php-mcrypt
Instalando MySQL
# yum install mysql-server php-mysql
Reiniciamos Apache
# service httpd restart
# mysql_install_db
# chkconfig --levels 235 mysqld on
Reiniciamos MySQL
# service mysqld restart
Configurando MySQL
# /usr/bin/mysql_secure_installation
Enter current password for root (enter for none): "Presionamos Enter"
Set root password? [Y/n] Y
New password: ****
Re-enter new password: ****
Remove anonymous users? [Y/n] Y
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
Thanks for using MySQL!

Reiniciamos MySQL
# service mysqld restart
Todo listo! Cualquier inquietud me informan.

También podría gustarte