Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 2

-> joomla setup <-

1. install fedora

2.install & configure httpd web server with php

2.1 install httpd and php packages


#yum install httpd php php-mysql

2.2 configure httpd


#cd /etc/httpd/conf
#vi httpd.conf
ServerAdmin eugen@aiolinux.ro
ServerName www.aiolinux.ro:80

2.3 start httpd service


#service httpd start

2.4 make httpd to start at boot time


#ntsysv
check httpd

3.install & configure mysql database server

3.1 install mysql packages


#yum install mysql-server mysql

3.2 start mysqld service


#service mysqld start

3.3 set root password for mysql


#/usr/local/mysql/bin/mysql -u root
mysql> use mysql;
mysql> update user set password=Password('P@$$w0rd') where user='root';
mysql> flush privileges;
mysql>\q

4.install & configure joomla

4.1 download joomla


#cd /var/www/htdocs
#mkdir aiolinux
#wget http://joomlacode.org/gf/download/frsrelease/12610/53421/Joomla_1.5.20-Stable-Full_Package.zip
#unzip Joomla_1.5.20-Stable-Full_Package.zip

4.2 edit httpd.conf to add joomla site


#cd /etc/httpd/conf
#vi httpd.conf
<VirtualHost *:80>
ServerAdmin eugen@aiolinux.ro
DocumentRoot /var/www/html/aiolinux
ServerName www.aiolinux.ro
ErrorLog logs/aiolinux.ro-error_log
CustomLog logs/aiolinux.ro-access_log common
</VirtualHost>
4.3 configure joomla

load in firefox http://www/aiolinux.ro


select language - english
pre-installation check - all green
license - ok
database configuration
database type - mysql
host name - localhost
usernamne - root
password - P@$$w0rd
database name - aiolinux
ftp configuration - no
main configuration
site name - AIO LINUX workshop
your email - eugen@aiolinux.ro
admin password - P@$$w0rd
! click install sample data

->remove folder named installation from /var/www/html/installation

5.ok

You might also like