Category Archives: Tutorials

How To Install Linux, Nginx, MySQL, PHP (LEMP stack) on Ubuntu 20.04

Update the package index and upgrade the existing packages on the server: sudo apt update sudo apt upgrade Install Nginx: sudo apt install nginx Allow Nginx through the firewall: sudo ufw allow ‘Nginx HTTP’ Check if Nginx is running by visiting your server’s IP address in a web browser: http://your_server_ip_address Install MySQL: sudo apt install […]

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu 20.04

Update the package index and upgrade the existing packages on the server: sudo apt update sudo apt upgrade Install Apache web server: sudo apt install apache2 Allow Apache through the firewall: sudo ufw allow in “Apache” Check if Apache is running by visiting your server’s IP address in a web browser: http://your_server_ip_address Install MySQL: sudo […]