Installing Joomla on Ubuntu
This video shows how to install and configure Joomla on Ubuntu 14.04. Joomla is an immensely popular and award-winning open source Content Management System (CMS) that enables users to build websites and create potent online applications in an unperturbed manner. Absolute user-friendliness and flexibility make Joomla amongst the most sought-after CMS softwares. It uses a PHP application, in addition to a backend database like MySQL. Joomla was created in 2005, and boasts of more than 10,000 add-ons for customized functionality-no wonder than that it remains the second most popular virtual content management site. This tutorial explains the process of installing Joomla on Ubuntu 14.04 in the form of a simple-to-follow guide.
You need to install LAMP first. The link is on video.
Commands:
mysql -u root -p
CREATE DATABASE joomladb;
CREATE USER joomlauser@localhost;
SET PASSWORD FOR joomlauser@localhost= PASSWORD("joomlapassword");
GRANT ALL ON `joomladb`.* TO `joomlauser`@`localhost` IDENTIFIED BY 'joomlapassword';
GRANT ALL PRIVILEGES ON joomladb.* TO joomlauser@localhost IDENTIFIED BY 'joomlapassword';
FLUSH PRIVILEGES;
exit
service apache2 restart
service mysql restart
mkdir temp
cd temp
wget http://joomlacode.org/gf/download/frsrelease/19665/160049/Joomla_3.3.3-Stable-Full_Package.zip
apt-get install unzip
mkdir -p /var/www/html/joomla
unzip -q Joomla_3.3.3-Stable-Full_Package.zip -d /var/www/html/joomla
chown -R www-data.www-data /var/www/html/joomla
chmod -R 755 /var/www/html/joomla
Now proceed to the web installation of Joomla. Go to the URL http://192.168.0.107/joomla - check your ip first...
http://192.168.0.107/joomla/administrator/
Other Videos By Ubuntu
2016-02-26 | HandBrake – The open source video transcoder |
2015-11-09 | Install Windows 10 inside Ubuntu - VirtualBox |
2015-10-11 | Install virtualbox 5.0 on Ubuntu 15 |
2015-06-28 | How to install qBit Torrent on Ubuntu 15 |
2015-06-16 | Install Android Studio on Ubuntu 15.04 |
2015-05-28 | How fast is Ubuntu 15 on SSD |
2015-05-28 | How to install Quantum GIS on Ubuntu 15 [QGIS] |
2015-04-04 | RC Flight simulator for iPad - HD 60 FPS |
2015-04-04 | Mac Book Pro - Opening all apps at once |
2015-02-19 | Earn Paypal money - App Trailers perfect trick - [iPhone 4 only] |
2015-02-18 | Installing Joomla on Ubuntu |
2015-02-11 | Installing Apache2 With PHP5 And MySQL Support On Ubuntu (LAMP) |
2015-01-05 | My After Effect intro |
2014-12-27 | Install Sublime on Ubuntu |
2014-11-23 | Install Pinta on Ubuntu - Image Editor |
2014-11-06 | Play music via Terminal on Ubuntu |
2014-11-04 | Minecraft on iPad Air |
2014-10-27 | All-in-one Media plug-ins on Ubuntu |
2014-10-27 | Install Chrome on Ubuntu |
2014-10-25 | Install VLC Media Player on Ubuntu 14 |
2014-09-28 | Install iTunes on Ubuntu |