Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Created September 19, 2021 17:11
Show Gist options
  • Save LinuxPlaner/4fd4fe40771186fd0f800f92631ff558 to your computer and use it in GitHub Desktop.
Save LinuxPlaner/4fd4fe40771186fd0f800f92631ff558 to your computer and use it in GitHub Desktop.
Install Joomla Into Ubuntu
Ping Me For joomla installing related service:
SMS: +8801610932753
IMO: +8801610932753
BiP: +8801610932753
Viber: +8801610932753
Signal: +8801610932753
Discord: supanta saha#3868
Telegram: https://t.me/LinuxPlaner
WhatsApp: https://wa.link/njuw4c
Skype: https://join.skype.com/weW8UDI0u7o5
Email: [email protected]
sudo mysql_secure_installation
Enter current password for user root (enter for none) : [Press enter key]
Set root password? [Y/n] [Press y and enter new password and re-enter to confirm it]
Remove test database and access to it? [Y/n] [y]
Reload privilege tables now? [Y/n] [y]
sudo mysql
create database joomla;
use joomla;
flush privileges;
exit;
cd /var/www/html/
mkdir joomla
cd joomla
nano /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
DirectoryIndex index.php
DocumentRoot /var/www/html/joomla
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory "/var/www/html/joomla">
DirectoryIndex index.php index.html.var index.php
Options FollowSymlinks
Allowoverride All
Require all granted
</Directory>
</VirtualHost>
# save and exit
systemctl reload apache2
systemctl restart apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment