What is Joomla?
It is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications.
What’s a content management system?
A content management system is software that keeps track of every piece of content on your Web site, much like your local public library keeps track of books and stores them. Content can be simple text, photos, music, video, documents, or just about anything you can think of. A major advantage of using a CMS is that it requires almost no technical skill or knowledge to manage.
To install and run Joomla 2.5 in your CentOS 6 Linux VPS you need to complete the following few steps. We assume you have installed and configured LAMP (Linux Apache MySQL and PHP) or LNMP (Linux Nginx MySQL and PHP) on your system.
1. Make sure your system’s always up-to-date by executing:
# yum update -y
2. Download the Joomla 2.5 package to the newly created ‘/var/www/html/joomla2.5’ directory and change to this directory:
# mkdir -p /var/www/html/joomla2.5 && \ wget -P /var/www/html/joomla2.5 \ http://joomlacode.org/gf/download/frsrelease/17410/76012/Joomla_2.5.7-Stable-Full_Package.zip && \ cd /var/www/html/joomla2.5/
3. Extract the zipped archive to the ‘/var/www/html/joomla2.5’ directory.
# [[ ! $(which unzip 2>/dev/null) ]] && yum install unzip && \ unzip Joomla*.zip && rm -f Joomla_*.zip && \ chown apache: -R /var/www/html/joomla2.5
4. Navigate to http://your-ip/joomla2.5 and complete your Joomla instalation.
You may want to create a virtual host directive for your http://your-domain to serve the joomla you just installed in ‘/var/www/html/joomla2.5’.
PS. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.
Thank u so much for such kind of information about Joomla installation process….keep posting…