meta data de esta página
Diferencias
Muestra las diferencias entre dos versiones de la página.
| Próxima revisión | Revisión previa | ||
| aplicaciones:joomla:instalacion [2011/08/16 13:13] – creado lc | aplicaciones:joomla:instalacion [2023/01/18 14:36] (actual) – editor externo 127.0.0.1 | ||
|---|---|---|---|
| Línea 1: | Línea 1: | ||
| - | http://sysdigg.blogspot.com/2007/12/how-to-install-joomla-on-fedora8-linux.html | + | {{tag> joomla }} | 
| + | ==== Instalación Joomla ==== | ||
| + | === Preriquisitos === | ||
| + | < | ||
| + | yum install httpd | ||
| + | yum install php, php-mysql, php-devel | ||
| + | yum install mariadb-server | ||
| + | yum install unzip | ||
| + | </ | ||
| + | |||
| + | poner apache y mariadb para que se arranque en el inicio | ||
| + | < | ||
| + | systemctl enable mariadb | ||
| + | </ | ||
| + | |||
| + | Iniciamos los servicios | ||
| + | < | ||
| + | systemctl start mariadb</ | ||
| + | |||
| + | Para asegurar la BDD y ponerle contraseña ejecutamos el script | ||
| + | < | ||
| + | |||
| + | === Descargar el paquete === | ||
| + | < | ||
| + | cd /tmp | ||
| + | wget https://downloads.joomla.org/es/cms/joomla3/3-8-2/Joomla_3-8-2-Stable-Full_Package.zip | ||
| + | </ | ||
| + | |||
| + | Preparar la instalación de joomla en Apache | ||
| + | < | ||
| + | #cd / | ||
| + | #ln –s / | ||
| + | #mv / | ||
| + | </ | ||
| + | === Configurar Apache === | ||
| + | < | ||
| + | #vi / | ||
| + | Alias /joomla / | ||
| + | |||
| + | < | ||
| + | |||
| + | Order deny, | ||
| + | |||
| + | Deny from all | ||
| + | |||
| + | Allow from 127.0.0.1 | ||
| + | |||
| + | Allow from all | ||
| + | |||
| + | </ | ||
| + | </ | ||
| + | < | ||
| + | CREATE DATABASE joomla; | ||
| + | GRANT ALL PRIVILEGES ON joomla.* TO joomlauser@localhost IDENTIFIED BY ' | ||
| + | GRANT ALL PRIVILEGES ON joomla.* TO joomlauser@localhost.localdomain IDENTIFIED BY ' | ||
| + | FLUSH PRIVILEGES; | ||
| + | quit; | ||
| + | </ | ||
 
