Created
October 17, 2021 09:53
-
-
Save LinuxDevOpsGirl/c172286789b617005bf834bb2c81ba5a to your computer and use it in GitHub Desktop.
Install PHPmyAdmin on Ubuntu with a 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
https://youtu.be/QEbolJbyDPg | |
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 apt update | |
sudo apt upgrade | |
sudo apt install apache2 | |
# Visit: http://localhost/ | |
# Install PHP & check version | |
sudo apt-get install software-properties-common | |
# Install PHPmyAdmin | |
sudo apt install phpmyadmin | |
# visit: http://localhost/phpmyadmin/ | |
#WordPress | |
wget https://wordpress.org/latest.zip | |
sudo service mysql restart | |
sudo service apache2 restart | |
sudo service apache2 reload | |
# visit http://localhost/ |
Author
LinuxDevOpsGirl
commented
Oct 17, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment