Install Joomla Cms On Ubuntu 18.04 Lts With Apache2, Mariadb and PHP 7.1 Support
Install Joomla Cms On Ubuntu 18.04 Lts With Apache2, Mariadb and PHP 7.1 Support
04 LTS
with Apache2, MariaDB and PHP 7.1 Support
!robot | 01/16/2018 | Applications, Labs, Linux Ubuntu | 1 Comment
I recently installed Ubuntu 18.04 LTS version for testing purposes… for new users and students
looking for help installing Joomla CMS on Ubuntu 18.04, the steps below should be a great place to
start…
This post shows students and new users how to install Joomla on Ubuntu 18.04 LTS. For those who
don’t know, Joomla is an open source content management system (CMS) that helps webmasters
and bloggers create dynamic and power websites.
Like many other content management systems, Joomla runs on top of the LAMP stack and might be
the second or third most popular CMS in use today, right behind WordPress. So, if WordPress isn’t
meeting your needs, you may want to give Joomla a try.
This post should be easy to follow even for new users.
To get started with installing and configuring Joomla on Ubuntu, follow the steps below:
After installing Apache2, run the commands below to disable directory listing.
sudo sed -i "s/Options Indexes FollowSymLinks/Options
FollowSymLinks/" /etc/apache2/apache2.conf
After installing Apache2, the commands below can be used to stop, start and enable Apache2
service to always start up with the server boots.
sudo systemctl stop apache2.service
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
After configuring above, restart MariaDB server by running the commands below
sudo systemctl restart mariadb.service
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html/joomla/>
Options FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>