Created
October 30, 2021 01:00
-
-
Save LinuxDevOpsGirl/8e30a3cdc2e4ab22d2bdeea4df192d08 to your computer and use it in GitHub Desktop.
Joomla Install LAMP Stack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment