Skip to content

Instantly share code, notes, and snippets.

@LinuxDevOpsGirl
Created October 30, 2021 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LinuxDevOpsGirl/8e30a3cdc2e4ab22d2bdeea4df192d08 to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/8e30a3cdc2e4ab22d2bdeea4df192d08 to your computer and use it in GitHub Desktop.
Joomla Install LAMP Stack
#Youtube: https://youtu.be/v8jcu8boSqo
sudo apt update -y
sudo apt-get upgrade -y
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo apt upgrade -o APT::Get::Show-Upgraded=true
sudo apt install apt-show-versions
sudo apt update -y
sudo apt-get upgrade -y
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt -y clean
sudo apt update
sudo reboot
sudo apt install curl
sudo curl http://icanhazip.com
sudo systemctl start apache2 mariadb
sudo systemctl enable apache2 mariadb
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 anonymous users? [Y/n] [ y]
Disallow root login remotely? [Y/n] [y]
Remove test database and access to it? [Y/n] [y]
Reload privilege tables now? [Y/n] [y]
systemctl reload apache2
systemctl restart apache2
# Visit: http://localhost/
@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-10-30 06-23-10

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-10-30 06-25-31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment