Last active
January 10, 2022 16:08
-
-
Save cloudybdone/2991591c1366cef0340cf3c0f2c96ca4 to your computer and use it in GitHub Desktop.
I Will Do Installation of LEMP Stack with PhpMyAdmin in Ubuntu 20.04
This file contains hidden or 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
| If you need anything related to LEMP Stack Setup on Ubuntu contact: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHxboQrc | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube Video: https://www.youtube.com/watch?v=rsP_oeYdG1A&list=PLiveDaEySXe_d-h_DJM7k_AZL-gKPOP61 | |
| sudo -i | |
| apt update -y && apt upgrade -y | |
| apt install build-essential.... | |
| apt install software-..... | |
| apt install apt-show-versions | |
| apt upgrade -o... | |
| apt-show-versions..... | |
| add-apt-repository ppa.... | |
| apt update -y && apt upgrade -y | |
| git config --global ... | |
| git config --global ... | |
| cat /root/.... | |
| apt upgrade -y && apt update | |
| nano /etc/... | |
| service ssh restart | |
| apt -f install && apt autoremove | |
| reboot | |
| apt install nginx | |
| chown .... | |
| chmod -R ..... | |
| nginx -t | |
| ufw allow ... | |
| ufw status | |
| systemctl start nginx | |
| systemctl daemon-reload | |
| systemctl .... | |
| systemctl status nginx | |
| curl -4.... | |
| apt install mariadb..... | |
| mysql_secure_installation | |
| nano /usr/lib/.... | |
| LimitNOFILE=....... | |
| systemctl daemon-reload | |
| systemctl restart | |
| systemctl status.... | |
| mysql | |
| create database lemp; | |
| GRANT ALL PRIVILEGES.... | |
| use lemp; | |
| exit | |
| systemctl restart mariadb | |
| apt install php..... | |
| sudo apt install openssl php-common .......... | |
| sudo apt install php7.4-common.... | |
| systemctl status php7.4-fpm | |
| nano /etc/......... | |
| listen = ........ | |
| nano /etc/nginx/....... | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| root /var/www/html; | |
| } | |
| location ~ \.php$ { | |
| include snippet.... | |
| } | |
| } | |
| nginx -t | |
| apt update && apt upgrade -y | |
| ln -s /usr/share/........... | |
| chmod 775 -R /usr/....... | |
| systemctl stop apache2 | |
| systemctl reload nginx | |
| systemctl ............... | |
| systemctl restar..... | |
| visit: localhost/phpmyadmin |
cloudybdone
commented
Jan 4, 2022
Author

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


