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

www.arondmessaging.ro www.facebook.

com/aiolinux

-> joomla 3 setup <-

1. install ubuntu 14.04

2.install & configure httpd web server with php and mysql

2.1 install httpd
#apt-get install apache2 php5 libapache2-mod-php5

2.2 start & enable httpd service
#/etc/init.d/apache2 restart
#rcconf (enable apache2)

2.3 and php5 packages
#apt-cache search php5 (list all the packages)
#apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt
php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc
php5-xsl php5-xcache
#/etc/init.d/apache2 restart

3.install & configure mysql database server

3.1 install mysql packages
#apt-get install mysql-server mysql-client
New password for the MySQL "root" user: password
Repeat password for the MySQL "root" user: password

3.2 start mysqld service
#/etc/init.d/mysqld restart
#rcconf (enable mysqld)

4.install & configure joomla

4.1 download joomla
#cd /var/www/html
#mkdir aiolinux
#wget http://joomlacode.org/gf/download/frsrelease/19524/159413/Joomla_3.3.1-Stable-Full_Package.zip
#unzip Joomla_3.3.1-Stable-Full_Package.zip

4.2 edit httpd.conf to add joomla site
#cd /etc/apache2/sites-enabled
#vi aiolinux.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

www.arondmessaging.ro www.facebook.com/aiolinux

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 - password
database name - aiolinux
ftp configuration - no
main configuration
site name - AIO LINUX workshop
your email - eugen@aiolinux.ro
admin password - password
! click install sample data

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

5. fire a browser and check your new website

You might also like