Installing Joomla on Debian Linux

From Joomla! Documentation

Revision as of 08:25, 25 July 2012 by Jbrice (talk | contribs) (Added link to "how to" about using multiple versions of XAMPP)

Preface[edit]

This document guides you through the manual installation of Joomla! on Debian GNU Linux or one of its derivatives such as Ubuntu, Knoppix or GRML. Note that this guide applies to Joomla! Joomla 1.5 Joomla 1.6 Joomla 1.7 Joomla 2.5. It has been successfully tested on Debian 4.0 [Etch], Debian 5.0 [Lenny], Ubuntu 8.04 LTS [Hardy Heron], Ubuntu 10.10 [maverick] and Ubuntu 11.10 (Oneiric Ocelot). It will work for all Debian based Linux distribution as well.

Also note that this guide assumes, you're installing Joomla! in a single hosting environment, running PHP as module. If you want to run multiple web sites as a web hosting service provider, for security reasons you should consider setting up an suPHP (php5-cgi, libapache2-mod-suphp) environment, where every virtual Apache host runs under its own UID.

Installing Joomla![edit]

Prerequisites[edit]

You will need to install apache2, mysql-server-5.0, mysql-client-5.0 and php5 in order to have a web-server for Joomla!.

Which stack should I choose?[edit]

- XAMPP automatically configures ownership.

- LaMp requires use of the CHOWN command.

- BitNami Joomla! Stack is free, self-contained and automatically configures the LAMP stack and Joomla!

XAMPP[edit]

Download XAMPP for Linux to your your Home folder.

Install XAMPP[edit]

Open Terminal and enter:

sudo tar xvfz xampp-linux-1.7.7.tar.gz -C /opt

(replace xampp-linux-1.7.7.tar.gz with the version of XAMPP you downloaded).

This installs ... Apache2, mysql and php5 as well as an ftp server.

sudo /opt/lampp/lampp start

and

sudo /opt/lampp/lampp stop

starts/stops all the services

Test your XAMPP localhost server[edit]

Open your Browser and point it to

http://localhost

The index.php will redirect to

http://localhost/xampp

There you will find instructions on how to change default usernames/passwords. On a PC that does not serve files to the Internet or LAN then changing the defaults is personal choice.

Multiple Versions of XAMPP[edit]

It can be useful to have access to several versions of XAMPP on your PC (e.g to have available different versions of PHP for testing). XAMPP doesn't make this easy but it is possble - see "how to" article (for Linux only) here [1].

Get Joomla[edit]

Download the latest Joomla instalation zip [2]

Unzip to your hard drive

Connect to localhost with an FTP client Default

nobody
lampp

Create a folder for your Joomla on the localhost server

FTP the unpacked Joomla installation files to the newly created Joomla folder.

Important:

  • The XAMPP installation sets the correct Ownership of the files and permissions.
  • Using the CHOWN command will cause Ownership problems with xampp.
  • Using nautilus to manipulate folders/files on localhost will cause Ownership problems with xampp.

Configure Joomla[edit]

In your Browser type

http://localhost/yournewjoomlafolder

In the first Joomla installation screen if error reporting is shown as on then:

In your Terminal type

sudo gedit /opt/lampp/etc/php.ini

In the php.ini file, locate

error_reporting =

And change the value to

error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED

Also locate

display_errors = On

And change the value to

display_errors = Off

Stop then restart xampp for the new settings to take effect

FTP layer is NOT needed

Database info

Host: localhost

Database name: test

(Xampp will automatically create a database of the name you specify).

Default Database user: root

There is no Password for Database user: root.


Administrator password is your choice.

Installing Sample Data is recommended for the novice user.

After installation delete the installation directory and point your Browser to:

http://localhost/yournewjoomlafolder

or

http://localhost/yournewjoomlafolder/administrator

Create a link in the Ubuntu menu[edit]

To create a GUI for XAMPP connected to your Ubuntu menu

Open up the Terminal and type

sudo gedit /usr/share/applications/xampp-control-panel.desktop

Then copy the following into the gedit and save.

[Desktop Entry]
Encoding=UTF-8
Name=XAMPP Control Panel
Comment=Start and Stop XAMPP
Exec=gksudo "python /opt/lampp/share/xampp-control-panel/xampp-control-panel.py"
Icon=/usr/share/icons/Tango/scalable/devices/network-wired.svg
Terminal=false
Type=Application
Categories=GNOME;Application;Network;
StartupNotify=true

N.B. Ubuntu 11.10 needs python-glade2 installed in order to run the GUI. python-glade2 can be found in the Ubuntu Software Center.

LaMp[edit]

You will find instructions on wiki.debian.org. Make sure that you have installed bzip2 for extracting the downloaded Joomla! package.

You can check this by the following command:

$ dpkg -l  | awk '/^ii bzip2/ {print $1" "$2}'
ii bzip2

Note that the dollar sign '$' shell prompt is indicating you're a regular user. We will later see a hash mark (#) shell prompt, which indicates that you're the super user root after issuing an su or sudo. The first policy for a secure linux system administration on the command line (but under X also) is to issue commands with the lowest permission as possible.

If bzip2 is not installed, you won't get an output. Then you can quickly install it via aptitude:

$ su -c "aptitude install bzip2"

Here we see the first command executed with toot permissions, because a regular user is not allowed to install new software. The '-c' option passes the following command to su and hereafter it terminates instead of switching to a root shell.

Configure PHP5[edit]

in the pre install check [ you get to that when the install is complete and are setting up Joomla at the web page ], Output Buffering was On and it's recommended that it should be Off .to do so edit /etc/php5/apache2/php.ini , comment out this line: output_buffering = 4096 , by putting a ';' in front. it'll look like this when done:

;output_buffering = 4096

there were also warnings on the install screen regarding suhosin . to make the suggested changes, edit this file:

/etc/php5/conf.d/suhosin.ini

I set these :

suhosin.post.max_array_index_length = 256
suhosin.post.max_totalname_length = 8192
suhosin.post.max_vars = 2048
suhosin.request.max_array_index_length = 256
suhosin.request.max_totalname_length = 8192
suhosin.request.max_vars = 2048

Configure MySQL[edit]

It is time to create a database for Joomla! You can do this by the following commmands:

mysqladmin -u root -p create joomla

You may replace joomla with the name of choice for Joomla!'s database.

Now create a MySQL user different from root for Joomla!'s database. first enter into mysql system with:

mysql -u root -p

Then at the 'mysql>' prompt enter the following. Make sure you replace joomla with the name of Joomla!'s database from above. Replace yourusername with the user name you choose for the MySQL user accessing Joomla!'s database, and replace yourpassword with your password of choice for the MySQL user.

GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, \
LOCK TABLES ON joomla.* TO 'yourusername'@'localhost' IDENTIFIED BY 'yourpassword';

Activate the settings and quit : [ there will be a mysql> prompt:

FLUSH PRIVILEGES;
\q


After disconnecting from the database server, you should remove the login information of your just new created MySQL user by editing MySQL's history file.

vi ~/.mysql_history


You can use any editor of your choice such as nano, vi or emacs that is installed on your system.

Get Joomla! source[edit]

Now it is time to download the Joomla! sources. Currently you will find download links on the joomlacode.org download page. For version 1.5.11, you may do the following from command line, assuming your current working directory is your home folder /home/user:

$ wget http://joomlacode.org/gf/download/frsrelease/10209/40306/Joomla_1.5.11-Stable-Full_Package.tar.bz2
$ cd /var/www
$ su
# mkdir -m 0755 joomla
# cd joomla
# tar -xvjf /home/user/Joomla_1.5.11-Stable-Full_Package.tar.bz2

for 1.7 use this wget line:

wget http://joomlacode.org/gf/download/frsrelease/15278/66553/Joomla_1.7.0-Stable-Full_Package.tar.bz2

You may want to check http://joomlacode.org/gf/project/joomla/frs/ for an updated package.


Here is the first time we see this hash mark (#) shell prompt. We call su without any options, because we want to issue root commands more than only one time. Calling su that way will prompt us for the super user's password and then change the actual shell environment, repectively $UID and $EUID.

Set ownerships and permissions[edit]

If you want to allow writing in the entire joomla folder, simply do

chown -R www-data:www-data /var/www/joomla

If you want a more restrictive approach, do this instead:

chown -R root:root /var/www/joomla
cd /var/www/joomla
PLACES='
administrator/backups
administrator/components
administrator/modules
administrator/templates
cache
components
images
images/banners
images/stories
language
mambots
mambots/content
mambots/editors
mambots/editors-xtd
mambots/search
media
modules
templates
'
for i in $PLACES; do chown -R www-data:www-data $i; done

Now set file and directory permissions:

find /var/www/joomla -type f -exec chmod 0644 {} \;
find /var/www/joomla -type d -exec chmod 0755 {} \;

Configure Joomla![edit]

Open your favourite web-browser, and point it to the page http://localhost/joomla. Replace localhost with your servers IP or domain name if it you are installing on a remote system.

You will be guided through the final steps of setting up Joomla!, have your MySQL user, password and database name available.

When you reach the final screen with congratulations on installing Joomla!, you should remove the installation directory. From root terminal:

# rm -rf /var/www/joomla/installation/
# exit
$

And that's it! Now you can login into the admin interface of your fresh installed Joomla! 1.5.9.

BitNami Joomla! stack[edit]

What is BitNami Joomla! Stack?[edit]

BitNami Joomla! Stack is an all-in-one installer that makes it easy to install Joomla on your computer. It is free, easy to use and self-contained. That means it bundles and automatically configures every piece of software (dependency) necessary to run Joomla for development or production purposes, including Apache, MySQL and PHP. You can download the latest version of BitNami Joomla! stack for Windows, Linux and OS X at http://bitnami.org/stack/joomla.

Installing Joomla! Stack[edit]

Regardless of which operating system you are running (Windows / Linux / Mac), the install process is the same.

Download the latest version of Joomla! Stack from the BitNami website.

Find the installer you just downloaded (the filename will be similar to bitnami-joomla-VERSION-linux-installer.run. Double click on the icon to launch the installer.

Note: If you are using Linux you will have to give executable permissions to the file first, using this command:
chmod +x /path/to/bitnami-joomla-VERSION-linux-installer.run

Joomla welcome.png

Click "Forward".


Joomla components.png

Select the components you want to install. If you are not sure, leave the default components checked. Click "Forward" when you are done.


Joomla directory.png

Now it will ask where do you want to install the program. Provide the location where you want to install the BitNami Joomla! stack and click "Forward" when you are done.


Joomla userdata.png

The user and password you provide here will be used to create the admin account in Joomla! Click "Forward" when you are done.


Joomla sitename.png

Type in the name you want to use for your Joomla site, and click "Forward".


JoomlaReadytoinstall.png

The installer is now ready to begin the installation process. Click "Forward".


JoomlaCopyingfiles.png

Wait a minute while the installer copies the files and configures your Joomla! installation.


Joomlafinalscreen.png

Joomla! is now set up and ready to be used. Click "Finish" to launch the application.


Joomlaapplicationscreen.png

You can now log in using the username and password you provided during the installation.