Skip to content

Instantly share code, notes, and snippets.

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/c172286789b617005bf834bb2c81ba5a to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/c172286789b617005bf834bb2c81ba5a to your computer and use it in GitHub Desktop.
Install PHPmyAdmin on Ubuntu with a LAMP Stack
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/
@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-10-17 14-53-32

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-10-07 07-27-18

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-10-17 15-20-29

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