Cómo instalar phpMyAdmin en Ubuntu 20.04
Encontraremos el paquete de phpMyAdmin en varios formatos de compresión disponibles, siendo el paquete .tar.xz el que elegiremos en este tutorial, copiando el enlace para realizar la descarga desde consola mediante el comando wget:
~$ wget https://files.phpmyadmin.net/phpMyAdmin/5.0.2/phpMyAdmin-5.0.2-all-languages.tar.xz
Para poder instalar phpMyAdmin en Ubuntu 20.04 LTS será necesario realizar una serie de tareas con el fin de preparar el sistema para el funcionamiento de esta aplicación. Veamos estas tareas paso a paso.
Continúa leyendoHow to Install LAMP Stack on Ubuntu 20.04 ServerDesktop
Step 1: Update Software Packages
Before we install the LAMP stack, it’s a good idea to update repository and software packages. Run the following commands on your Ubuntu 20.04 OS.
sudo apt update sudo apt upgrade
Step 2: Install Apache Web Server
Enter the following command to install Apache Web server. The apache2-utils
package will install some useful utilities like Apache HTTP server benchmarking tool (ab).
sudo apt install -y apache2 apache2-utils
After it’s installed, Apache should be automatically started. Check its status with systemctl
.
systemctl status apache2Continúa leyendo