sudo apt-get install lamp-server^
mysql -u root -p
CREATE DATABASE dbjoomla;
CREATE USER joomlauser;
(Change <password> to the password of your choice)
SET PASSWORD FOR joomlauser = PASSWORD("<password>");
GRANT ALL PRIVILEGES ON dbjoomla.* TO joomlauser@localhost IDENTIFIED BY '<password>';
FLUSH PRIVILEGES;
exit
wget http://joomlacode.org/gf/download/frsrelease/17965/78414/Joomla_3.0.3-Stable-Full_Package.zip
sudo unzip -q Joomla_3.0.1-Stable-Full_Package.zip -d /var/www
You will want to remove the index.html that exists in /var/www by default
sudo chown -R www-data.www-data /var/www
Install joomla 3.0 from a browser by typing http://[hostname]
Labels
- Active Directory (1)
- Eclipse (1)
- GIT (1)
- Glassfish (1)
- Java (3)
- Javascript (1)
- Joomla (1)
- Linux (12)
- MySQL (1)
- Proxmox (3)
- Sonicwall (1)
- SSH (1)
- Ubuntu (9)
- Version Control (1)
- Windows (1)
Wednesday, April 10, 2013
Ubuntu 12.04 Joomla 3
I recently setup an Ubuntu server with Joomla 3. I used the instructions found here with a few modifications. I did not want the joomla site to be under the /joomla subdirectory so I skipped the first three commands under step 2. The steps I used are as follows:
Subscribe to:
Posts (Atom)